0

我似乎找不到答案,但是如何通过 jQuery 的 each 方法中的索引号访问单个数组元素?

直接 JS 会这样做:

for(i=0; i<myArray.length; i++)
{
    if(i === 1)
    {    
        // do something
    }
}

但我似乎无法弄清楚如何在每个方法中使用查找索引号......?

myArray.each(function()
{
    if(this[1])
    {
        // doesn't work?
    }
}

感谢您的任何帮助。

4

1 回答 1

6

做:

$.each(myArray, function(index, value) {
    alert(index + ': ' + value);
});

更重要的是,请参阅:jQuery.each()

于 2013-01-27T10:39:03.347 回答