上一页 1 ··· 46 47 48 49 50 51 52 53 54 ··· 77 下一页
摘要: 1点击clone or download 2.自由选择 3.拉到你想放的位置,我是放到桌面上的 4. cmd 打开,进入你 的下载到桌面的项目 5. 6. 上面步骤做完出现就是成功了 2018-06-16 09:42:44 阅读全文
posted @ 2018-06-16 09:43 1点 阅读(6692) 评论(0) 推荐(0) 编辑
摘要: 1. 首先引入 require.js 2.构建首页 ,在首页中加载模块 student,teacher <script> require(["student","teacher"],function(){ //这里是首页模块的自己的逻辑 console.log('首页模块'); }); </scri 阅读全文
posted @ 2018-06-14 13:46 1点 阅读(133) 评论(0) 推荐(0) 编辑
摘要: handleLetterClick方法,采用emit 传递给父组件 父组件触发的方法: handleLetterChange方法: 父组件传递给子组件: CityList组件: 兄弟组件的传值可以先将值传递给父组件,然后由父组件传递给兄弟组件 2018-06-12 19:52:08 阅读全文
posted @ 2018-06-12 19:52 1点 阅读(217) 评论(0) 推荐(0) 编辑
摘要: 函数调用 this 的含义:函数内部的this指向window 上下文调用bind: new调用(构造函数) 方法调用 阅读全文
posted @ 2018-05-31 13:48 1点 阅读(467) 评论(0) 推荐(0) 编辑
摘要: 拷贝继承 demo: 效果: 封装拷贝继承: 效果: 2018-05-29 11:09:14 阅读全文
posted @ 2018-05-29 11:09 1点 阅读(154) 评论(0) 推荐(0) 编辑
摘要: person1,person2是创建的实例,Person是构造函数,person1.constructor=Person ,person2.constructor=Person 一个公式:实例的构造函数属性(constructor)指向构造函数。 构造函数和实例原型之间的关系: person 和 P 阅读全文
posted @ 2018-05-29 09:38 1点 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 作用域链:1级:查看当前作用域,如果当前作用域声明了这个变量,就确定结果2级:查找当前作用域的上级作用域,也就是当前函数的上级函数,看看上级函数中有没有声明3级:再查找上级函数的上级函数,直到全局作用域为止如果没有找到,认为这个变量未声明 解释: alert(rain); ==>inner() // 阅读全文
posted @ 2018-05-28 15:28 1点 阅读(156) 评论(0) 推荐(0) 编辑
摘要: select substring(reverse('0->星光'),PATINDEX('%[0-9]%',reverse('0->星光')),1) 阅读全文
posted @ 2018-05-26 15:35 1点 阅读(2345) 评论(0) 推荐(0) 编辑
摘要: 1. 获取文件 var file=this.files[0]; 2. 开始读取,创建读取器 var reader=new FileReader(); 3.开始读取 reader.readAsText(file); 4.获取读取的结果 reader.onload=function() { consol 阅读全文
posted @ 2018-05-22 17:03 1点 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 1.document.getElement 2. 通过js插件 <script type="text/javascript" src="html5shiv.min.js"></script> 3. <!--[if lte IE 8]> <script type="text/javascript" s 阅读全文
posted @ 2018-05-22 16:37 1点 阅读(103) 评论(0) 推荐(0) 编辑
上一页 1 ··· 46 47 48 49 50 51 52 53 54 ··· 77 下一页