如何使用我的jQuery来选择特定元素之后的第一个元素(非直接)?我有这个清单.
如何使用jQuery使用tr current(第3项)选择/操作第一个到来的tr(第5项)?我试过这个.
// This apply background color to the next immediate (Item 4) as its definition. $('.tr.current').next().css('background-color', '#000'); // This apply to background color all next Items $('.tr.current').nextAll().css('background-color', '#000'); // This apply to background color all next Items with class tr (Item 5, Item 7) $('.tr.current').next('.tr').css('background-color', '#000');
Milind Anant.. 5
使用.nextAll()
与:first
选择:
$('.tr.current').nextAll('.tr:first').css('background-color', '#000');
- Item 1
- Item 2
- Item 3
- Item 4
- Item 5
- Item 6
- Item 7
- Item 8
使用.nextAll()
与:first
选择:
$('.tr.current').nextAll('.tr:first').css('background-color', '#000');
- Item 1
- Item 2
- Item 3
- Item 4
- Item 5
- Item 6
- Item 7
- Item 8