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

ie8下array的map()方法不支持

时间:2015-09-06 15:55:09      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:

/*ie map()方法*/
    if(!Array.prototype.map){Array.prototype.map=function(callback,thisArg){var T,A,k;if(this==null){throw new TypeError(" this is null or not defined");}var O=Object(this);var len=O.length>>>0;if(typeof callback!=="function"){throw new TypeError(callback+" is not a function");}if(thisArg){T=thisArg}A=new Array(len);k=0;while(k<len){var kValue,mappedValue;if(k in O){kValue=O[k];mappedValue=callback.call(T,kValue,k,O);A[k]=mappedValue}k++}return A}}

  

ie8下array的map()方法不支持

标签:

原文地址:http://www.cnblogs.com/Truke/p/4786245.html

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