随笔分类 -  技术

摘要:html代码: 阅读全文
posted @ 2017-02-27 16:23 卿若竹 阅读(321) 评论(2) 推荐(0)
摘要:转自http://react-china.org/t/react-js/398 的jsgeeker 中文文档地址 http://reactjs.cn GitHub地址 https://github.com/reactjs-cn/react-docs 阮一峰的 "React 入门实例教程" http: 阅读全文
posted @ 2017-02-27 13:31 卿若竹 阅读(625) 评论(0) 推荐(0)
摘要:作者:阿讯小飞 原文来自:脚本之家 跨浏览器添加事件 跨浏览器移除事件 跨浏览器阻止默认行为 //跨浏览器阻止默认行为 function preDef(ev){ var e = ev || window.event; if(e.preventDefault){ e.preventDefault(); 阅读全文
posted @ 2017-02-27 11:55 卿若竹 阅读(525) 评论(0) 推荐(0)
摘要:如果想给app命名,应该创建一个实例对象: 阅读全文
posted @ 2016-12-01 11:31 卿若竹 阅读(624) 评论(0) 推荐(0)
摘要:常用前端手册: http://caniuse.com/ http://www.w3school.com.cn/ http://www.runoob.com/ http://www.css88.com/ 预编译官网: http://www.1024i.com/demo/less/ http://les 阅读全文
posted @ 2016-09-24 17:27 卿若竹 阅读(238) 评论(0) 推荐(0)
摘要:1 function People(name,age){ 2 this.name = name; 3 this.age = age; 4 } 5 6 People.prototype.say = function(){ 7 console.log('name:'+this.name); 8 console.log('age:'+this.age)... 阅读全文
posted @ 2016-09-22 19:57 卿若竹 阅读(136) 评论(0) 推荐(0)