至于详细的其他地方,否则显然是众所周知的,IE浏览器(版本绝对7,并在某些情况下,版本8)不落实的关键功能,特别是Array
(如forEach
,indexOf
等)。
到处都有许多变通办法,但是我想将一组适当的规范的实现折叠到我们的网站中,而不是复制粘贴或修改我们自己的实现。我发现js-methods看起来很有前途,但是我想在这里发表文章,看看是否有另一个高度推荐的库。几个其他标准:
js-methods
无能为力的(在这里看起来做得很好)。许多人使用MDC后备实现(例如,用于indexOf)。它们通常严格地符合标准,甚至达到显式检查所有参数类型的程度。
不幸的是,尽管很显然作者认为该代码是微不足道的并且可以自由使用,但是似乎没有明确的许可将其书面形式写入。如果这是可接受的许可证,则整个Wiki都是CCAttribution-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方法包括Arrayreduce
/reduceRight
,JSON和一些Object
可以可靠地实现为JS函数的新方法。
我听说有时需要将NodeLists更改为数组才能使用forEach()方法。我必须在什么样的情况下做这件事? 我是这样写的: 但是我无法理解with/white array.from()之间的区别。
问题内容: 如果您曾经使用JavaScript进行任何长度的工作,您都会知道Internet Explorer不会为Array.prototype.indexOf()[包括Internet Explorer 8]实现ECMAScript函数。这不是一个大问题,因为您可以使用以下代码扩展页面上的功能。 我应该何时实施? 我是否应该使用以下检查将其包装在我的所有页面上,该检查将检查原型函数是否存在,如
本文向大家介绍如何在Internet Explorer浏览器的JavaScript中修复Array indexOf()?,包括了如何在Internet Explorer浏览器的JavaScript中修复Array indexOf()?的使用技巧和注意事项,需要的朋友参考一下 要为Internet Explorer Web浏览器修复Array.indexOf(),请使用以下命令- 添加以下内容 让我
我知道要在数组中查找值是否存在,我可以使用indexOf,但如何使用对象数组呢?
问题内容: 我肯定会遗漏一些非常明显的东西,但是我搜索了所有内容,却找不到此方法。 问题答案: 使用Arrays实用程序类可以通过两种方法来完成此任务。 如果该数组未排序并且不是原始数组: 如果数组是原始数组且未排序,则应使用其他答案之一(例如KeremBaydoğan,Andrew McKinlay或Mishax)提供的解决方案。上面的代码即使theArray是原始代码也可能会编译(可能发出警告