Answers:
许多人使用MDC后备实现(例如,用于indexOf)。它们通常严格地符合标准,甚至达到显式检查所有参数类型的程度。
不幸的是,尽管很明显作者认为该代码是微不足道且可自由使用的,但似乎并没有明确的许可将其写为书面形式。如果这是可接受的许可证,则整个Wiki都是CC Attribution-ShareAlike(尽管CC并非针对此类代码而设计)。
js方法总体上看起来还可以,但是在功能应该是怎样的边缘(例如,未定义的列表项,使列表发生变化的函数)的边缘并不符合标准。它还充满了其他随机的非标准方法,包括一些可疑的方法,例如狡猾的stripTags和不完整的UTF-8编解码器(考虑到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方法包括Array reduce
/ reduceRight
,JSON和一些Object
可以可靠地实现为JS函数的新方法。
Kris Kowal已编译了一个小的库,充当ECMAScript 5功能的填充程序,该功能可能会在浏览器的实现中丢失。某些功能已被其他人多次修订,以优化速度并解决浏览器错误。编写功能时要尽可能遵循规范。
es5-shim.js是根据MIT许可证发布的,Array.prototype扩展名在顶部附近,您可以轻松地砍掉并删除所有不需要的功能。我还建议您缩小脚本的大小,因为注释使它变得比需要的大得多。
“不执行关键功能”实际上是指“符合ECMA 262第三版”,对吗?:)
您所引用的方法是新的第5版的一部分-对于不支持此功能的浏览器,您可以使用以下将“ 3”扩展到第5的“ shim” http://github.com/kriskowal/narwhal- lib / blob / narwhal-lib / lib / global-es5.js。
这些脚本在我的测试中效果不佳。我基于MDN文档创建具有相同功能的文件。
Internet Explorer 8解决了很多问题。请参见egermano / ie-fix.js中的代码。