摘要:
Vue.js中文文档 https://vuefe.cn/v2/guide/ Vue.js官网 http://cn.vuejs.org/ Vuejs 1.0 系列教程 https://laravist.com/series/vue-js-1-0-in-action-series vuejs入门基础 h 阅读全文
摘要:
React 技术栈系列教程 - 阮一峰的网络日志 http://www.ruanyifeng.com/blog/2016/09/react-technology-stack.html React.js官网 https://facebook.github.io/react/index.html Rea 阅读全文
摘要:
Sea.js官网 http://seajs.org/docs/ sea.js官方文档 https://github.com/seajs/seajs/issues/547 RequireJS官网 http://requirejs.org/ RequireJS中文网 http://www.require 阅读全文
摘要:
JavaScript菜鸟教程 http://www.runoob.com/jsref/dom-obj-document.html JavaScript书籍下载 http://fe.linqing07.com/fontend/read.php?tid=63&fid=8&page=1 林卿的书架 htt 阅读全文
摘要:
null表示"没有对象",即该处不应该有值 null和undefined基本是同义的,只有一些细微的差别。 作为函数的参数,表示该函数的参数不是对象。 作为对象原型链的终点。 Object.getPrototypeOf(Object.prototype)// null undefined表示"缺少值 阅读全文
摘要:
。。。啥也不说了,难受啊 toggle-switch.vue <template> <label role="checkbox" :class="['switch', { toggled }]"> <input type="checkbox" class="switch-input" @change 阅读全文
摘要:
平时想要遍历一个对象时一般会采用for/in语句,通过for/in语句可以快速地拿到对象的key和value值 var obj = {name:'zhang',age:24}; for(var key in obj){ console.log(key); //name age console.log 阅读全文
摘要:
对象的两种取值方式 通过在.后面直接加属性名取值,这也是我们最常使用的一种方式 let obj = {name: 'wan'}; console.log(obj.name); //wan 这是最普通的一种方式,还有一种方式我们用的不太多,就是使用[ ]包住属性名取值,类似于数组那样 let obj 阅读全文