前端-记录小技巧

132 阅读1分钟

样式

1. 浏览器调样式
2. 在线生成 http://www.w2bc.com/manual/css3%20generator/text-rotation.html
3. 参照已有系统的类似样式

js

1. console定位问题 

	var data = [{'品名': '名字1', '数量': 4}, {'品名': '名字2', '数量': 3}];
	console.table(data);

2. underscore

	a. 简介

		Underscore一个JavaScript实用库,提供了一整套函数式编程的实用功能,但是没有扩展任何JavaScript内置对象。
	
	b. 文档

		http://www.css88.com/doc/underscore/【文档】
	
	c. 例子

		underscore_html.html