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

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了forEach方法(兼容所有浏览器)相关的知识,希望对你有一定的参考价值。


//->自己在内置类的原型上扩展一个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方法(兼容所有浏览器)的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript中的数组遍历forEach()与map()方法以及兼容写法

JavaScript中的数组遍历forEach()与map()方法以及兼容写法

JavaScript中的数组遍历forEach()与map()方法以及兼容写法

使用 ForEach 进行单元测试 [关闭]

为啥覆盖 Parallel.foreach 循环的 .NET 单元测试依赖于硬件?

使用KarmaMocha实现vue单元测试