至于详细的其他地方,否则显然是众所周知的,IE浏览器(版本绝对7,并在某些情况下,版本8)不落实的关键功能,特别是Array(如forEach,indexOf等)。
Array
forEach
indexOf
到处都有许多变通办法,但是我想将一组适当的规范的实现折叠到我们的网站中,而不是复制粘贴或修改我们自己的实现。我发现js-methods看起来很有前途,但是我想在这里发表文章,看看是否有另一个高度推荐的库。几个其他标准:
js-methods
许多人使用MDC后备实现(例如,用于indexOf)。它们通常严格地符合标准,甚至达到显式检查所有参数类型的程度。
不幸的是,尽管很显然作者认为该代码是微不足道的并且可以自由使用,但是似乎没有明确的许可将其书面形式写入。如果这是可接受的许可证,则整个Wiki都是CCAttribution-ShareAlike(尽管CC并非针对此类代码而设计)。
js方法总体上看起来还可以,但是在功能应该是怎样的边缘(例如,未定义的列表项,使列表发生变化的函数)的边缘并不符合标准。它还充满了其他随机的非标准方法,包括一些可疑的方法,例如狡猾的stripTags和不完整的UTF-8编解码器(考虑到unescape(encodeURIComponent)技巧,这也是不必要的)。
unescape(encodeURIComponent)
物有所值,这就是我的用处(如果可以说完全具有版权,我特此将其发布到公共领域)。它比MDC版本短一点,因为它不尝试键入嗅探您还没有完成诸如传递非函数回调或非整数索引之类的愚蠢操作,但除此之外,它还尝试符合标准。(让我知道我是否错过了任何事情。
'use strict'; // Add ECMA262-5 method binding if not supported natively // if (!('bind' in Function.prototype)) { Function.prototype.bind= function(owner) { var that= this; if (arguments.length<=1) { return function() { return that.apply(owner, arguments); }; } else { var args= Array.prototype.slice.call(arguments, 1); return function() { return that.apply(owner, arguments.length===0? args : args.concat(Array.prototype.slice.call(arguments))); }; } }; } // Add ECMA262-5 string trim if not supported natively // if (!('trim' in String.prototype)) { String.prototype.trim= function() { return this.replace(/^\s+/, '').replace(/\s+$/, ''); }; } // Add ECMA262-5 Array methods if not supported natively // if (!('indexOf' in Array.prototype)) { Array.prototype.indexOf= function(find, i /*opt*/) { if (i===undefined) i= 0; if (i<0) i+= this.length; if (i<0) i= 0; for (var n= this.length; i<n; i++) if (i in this && this[i]===find) return i; return -1; }; } if (!('lastIndexOf' in Array.prototype)) { Array.prototype.lastIndexOf= function(find, i /*opt*/) { if (i===undefined) i= this.length-1; if (i<0) i+= this.length; if (i>this.length-1) i= this.length-1; for (i++; i-->0;) /* i++ because from-argument is sadly inclusive */ if (i in this && this[i]===find) return i; return -1; }; } if (!('forEach' in Array.prototype)) { Array.prototype.forEach= function(action, that /*opt*/) { for (var i= 0, n= this.length; i<n; i++) if (i in this) action.call(that, this[i], i, this); }; } if (!('map' in Array.prototype)) { Array.prototype.map= function(mapper, that /*opt*/) { var other= new Array(this.length); for (var i= 0, n= this.length; i<n; i++) if (i in this) other[i]= mapper.call(that, this[i], i, this); return other; }; } if (!('filter' in Array.prototype)) { Array.prototype.filter= function(filter, that /*opt*/) { var other= [], v; for (var i=0, n= this.length; i<n; i++) if (i in this && filter.call(that, v= this[i], i, this)) other.push(v); return other; }; } if (!('every' in Array.prototype)) { Array.prototype.every= function(tester, that /*opt*/) { for (var i= 0, n= this.length; i<n; i++) if (i in this && !tester.call(that, this[i], i, this)) return false; return true; }; } if (!('some' in Array.prototype)) { Array.prototype.some= function(tester, that /*opt*/) { for (var i= 0, n= this.length; i<n; i++) if (i in this && tester.call(that, this[i], i, this)) return true; return false; }; }
其他未在此处实现的ECMA262-5方法包括Arrayreduce/reduceRight,JSON和一些Object可以可靠地实现为JS函数的新方法。
reduce
reduceRight
Object