我正在使用以下实现
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 (!('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;
};
}
但是当我为 ex 使用 for 循环时,它的行为有点奇怪
var conditionJSONObject=new Array();
var conditionCombiner=new Array();
var combiner ;
combiner = jQuery.trim(jQuery(conditionTable.rows[i+1].cells[4].children[0]).select().val());
for(var index in conditionJSONObject)
{
if(conditionCombiner[index].combiner.toUpperCase() == 'AND')
{/*Some code of mine*/}
}
这段代码给出了错误,虽然最初它工作正常,同样的代码在 FF 上也能正常工作。当我检查索引值是“ForEach”时......是因为使用原型吗?