-1
A
回答
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
});
相關問題
- 1. 酶.eq()或.index()?
- 2. jQuery - eq()似乎指向與index()不同的元素 - 什麼給? :/
- 3. jquery中$('selector')[0],$('selector')。eq(index)之間的區別。
- 4. jQuery中的eq(index)可以接受超過9的索引嗎?
- 5. jQuery:使用eq
- 6. 定義jQuery「eq」
- 7. jquery - each()eq()click()
- 8. jquery中使用「:eq」和「.eq()」的地方
- 9. BTREE vs GIN vs GIST index
- 10. jQuery的ATTR和EQ
- 11. mysql表:index vs primary
- 12. 「:eq()」和.eq()的區別
- 13. $ document.find('body')。eq(0)vs $ document [0] .body
- 14. Perl的簡單比較== VS EQ
- 15. 使用jQuery .eq更新值
- 16. jQuery Selector(children,eq和innerhtml)
- 17. jQuery .eq()僅適用於表
- 18. jQuery's的對面:eq() - jquery
- 19. 查找通過JQuery的eq()
- 20. jquery動態結構與Eq
- 21. 的z-index VS translate3D在Chrome
- 22. Z-index vs輔助功能
- 23. slqlalchemy UniqueConstraint VS Index(unique = True)
- 24. 使用eq()和index()顯示隱藏div的問題
- 25. 通過使用eq
- 26. JQuery Animate Z-Index?
- 27. Z-index&jQuery Toggle
- 28. 什麼是($ file eq'。'|| $ file eq'..')?
- 29. 使用eq
- 30. jquery index()返回-1
可能ÿ你分享for循環的代碼? – RYFN