首页 > 其他 > 详细

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

时间:2016-01-27 22:47:10      阅读:301      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!