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 (!('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”时......是因为使用原型吗?

4

1 回答 1

1

Array.prototype.forEach = ...确实forEach为所有数组添加了一个属性。for(.. in ..)您可以在这样的循环中避免它:

for(var index in array) {
    if(!array.hasOwnProperty(index)) continue;
    ...//loop body
}

或者你也可以像这样缩进使用它:

array.forEach(function(value,index) {
    ...//loop body
});
于 2013-04-16T10:58:47.707 回答