上一页 1 ··· 4 5 6 7 8 9 10 11 下一页
摘要: http://my.oschina.net/blogshi 阅读全文
posted @ 2016-05-28 10:00 *润物无声* 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 1. 一峰的网络日志:http://www.ruanyifeng.com/blog/2011/03/url_hash.html get: 1.页面滚动到指定页面的指定位置 (eg: http://www.example.com/index.html#print <div id="print" > i 阅读全文
posted @ 2016-05-28 08:51 *润物无声* 阅读(4804) 评论(0) 推荐(0) 编辑
摘要: 链接地址: Yeoman:强大的web构建工具 http://hao.jobbole.com/yeoman/ Yeoman官方教程:用Yeoman和AngularJS做Web应用 http://blog.jobbole.com/65399/ 阅读全文
posted @ 2016-05-24 21:58 *润物无声* 阅读(139) 评论(0) 推荐(0) 编辑
摘要: NodeJS、NPM安装配置步骤(windows版本) :http://xiaoyaojones.blog.163.com/blog/static/28370125201351501113581/ http://yeoman.io/ 阅读全文
posted @ 2016-05-24 21:57 *润物无声* 阅读(289) 评论(0) 推荐(0) 编辑
摘要: Ready事件 对DOM操作之前需要监听页面加载进度,应当在页面加载完成之后再执行DOM编辑操作。 $(document).ready(function(){ ... }); $(document).ready(function(){ ... }); 或者 $(function(){ ... }); 阅读全文
posted @ 2016-05-21 15:35 *润物无声* 阅读(769) 评论(0) 推荐(0) 编辑
摘要: JavaScript编码规范 Bug 33条 1. 不要使用’==’和’!=’,使用’ ’和’!==’替代 等级:Major 原因:==和!=在判断值相等前会判断类型是否相等。这容易因为类型不同而造成错误。比如:它会认为表达式:’\t\r\n’==0是正确的。因此,要采用 和!==替代这两个符号。 阅读全文
posted @ 2016-05-21 15:24 *润物无声* 阅读(3339) 评论(0) 推荐(0) 编辑
摘要: CSS 编码规范 1. 文件组织 (建议试试LESS) 1.1 CSS 与 HTML CSS 一律写在 CSS 文件中,原则上不写内联样式。 CSS 文件命名由小写字母、下划线(_)组成。 CSS 文件通过 标签引入 HTML 文件,并放在文档头部即 <head> 标签中,不使用 @import。 阅读全文
posted @ 2016-05-21 15:17 *润物无声* 阅读(397) 评论(0) 推荐(0) 编辑
摘要: 这个链接有规范的html 描述:http://nec.netease.com/standard 相关链接: 1. http://www.zhangxinxu.com/wordpress/2010/09/%E7%B2%BE%E7%AE%80%E9%AB%98%E6%95%88%E7%9A%84css% 阅读全文
posted @ 2016-05-21 14:49 *润物无声* 阅读(162) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html><html lang="zh"><head> <meta charset="utf-8"/> <title>HTML规范 整体结构</title> <meta name="keywords" content=""/> <meta name="description" c 阅读全文
posted @ 2016-05-21 12:22 *润物无声* 阅读(274) 评论(0) 推荐(0) 编辑
摘要: 1.angularjs 框架结构 bootstrap process :http://www.oschina.net/translate/angularjs-the-next-big-thing?print(看流程图) 2.对angularjs的深入点的了解:http://www.angularjs 阅读全文
posted @ 2016-05-18 22:56 *润物无声* 阅读(114) 评论(0) 推荐(0) 编辑
上一页 1 ··· 4 5 6 7 8 9 10 11 下一页