摘要: this的指向问题 函数内的this指向 这些this的指向,是当我们调用函数的时候确定的。调用方式的不同决定了this的指向不同 一般指向我们的调用者. 调用方式 this指向 普通函数调用 window 构造函数调用 实例对象、原型对象里面的方法也指向实例对象 对象方法调用 该方法所属对象 事件 阅读全文
posted @ 2020-11-20 23:23 水熊虫喵了个咪 阅读(98) 评论(0) 推荐(0) 编辑
摘要: 1.foreach var arr = [12,34,56,78,90,0 ]; arr.forEach(function (item,index,arr) { console.log(item);//当前项 console.log(index);//当前项的索引 console.log(arr); 阅读全文
posted @ 2020-11-20 16:57 水熊虫喵了个咪 阅读(58) 评论(0) 推荐(0) 编辑
/* 返回顶部代码 */ TOP