2012-08-30 90 views

回答

0

如果你是在一個循環中,你可能需要使用eq() - 因爲.EQ()返回傳入的索引在jQuery對象

for(i= 0; i<3; i++){ 
    $('div').eq(i); // <-- gets div elements from index 0-2 
}); 

如果您正在使用的。每()來遍歷它已經索引,元素參數

   //(key,value) <-- if map 
$.each(function(indexInArray, valueOfElement){ 

}); 
0

我建議每一個使用這樣

.each(function(index) { 
    $(this) //references the element 
    index //references the index 
});