码迷,mamicode.com
首页 > 其他好文 > 详细

forEach方法(兼容所有浏览器)

时间:2016-01-27 22:49:47      阅读:146      评论:0      收藏:0      [点我收藏+]

标签:


//->自己在内置类的原型上扩展一个myForEach来处理forEach不兼容的问题
//callBack:回调函数,遍历数组中的一项,就要执行一次callBack
//context:改变callBack方法中的this指向

Array.prototype.myForEach = function myForEach(callBack, context) {

typeof context === "undefined" ? context = window : null;

if ("forEach" in Array.prototype) {
this.forEach(callBack, context);
return;
}

//->不兼容处理
for (var i = 0; i < this.length; i++) {
typeof callBack === "function" ? callBack.call(context, this[i], i, this) : null;
}
};





 

forEach方法(兼容所有浏览器)

标签:

原文地址:http://www.cnblogs.com/wangying731/p/5164642.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!