map和forEach兼容ie6-8方法
程序员文章站
2022-05-21 10:42:48
...
本文主要和大家分享map和forEach兼容ie6-8方法,主要以代码的形式进行讲解,希望能帮助到大家。
/** * forEach遍历数组 * @param callback [function] 回调函数; * @param context [object] 上下文; */ Array.prototype.myForEach = function myForEach(callback,context){ context = context || window; if('forEach' in Array.prototye) { this.forEach(callback,context); return; } //IE6-8下自己编写回调函数执行的逻辑 for(var i = 0,len = this.length; i < len;i++) { callback && callback.call(context,this[i],i,this); } } /** * map遍历数组 * @param callback [function] 回调函数; * @param context [object] 上下文; */ Array.prototype.myMap = function myMap(callback,context){ context = context || window; if('map' in Array.prototye) { return this.map(callback,context); } //IE6-8下自己编写回调函数执行的逻辑 var newAry = []; for(var i = 0,len = this.length; i < len;i++) { if(typeof callback === 'function') { var val = callback.call(context,this[i],i,this); newAry[newAry.length] = val; } } return newAry; }
相关推荐:
JavaScript中的forEach与$.each以及map方法的详解
以上就是map和forEach兼容ie6-8方法的详细内容,更多请关注其它相关文章!
上一篇: aws cdn字体跨域问题
推荐阅读
-
JavaScript遍历数组的三种方法map、forEach与filter实例详解
-
关于启用和取消QQ浏览器兼容性视图方法的图文详细介绍
-
js/jquery遍历对象和数组的方法分析【forEach,map与each方法】
-
JS forEach和map方法的用法与区别分析
-
原生JS forEach()和map()遍历的区别、兼容写法及jQuery $.each、$.map遍历操作
-
详解vue数组遍历方法forEach和map的原理解析和实际应用
-
JS中的forEach、$.each、map方法推荐(附实例)
-
jQuery Position方法使用和兼容性
-
windows下 兼容Python2和Python3的解决方法
-
JS中Map和ForEach的区别