0

一个页面中有许多具有相同类名的 div。如何使用 jquery 仅选择具有特定类名的第二个 div,但没有别的选择?谢谢!!

4

1 回答 1

4

您可以使用.eq如下功能,

$(selector).eq(1) //should return you the second element of the matching selector.

或者您可以使用:eq()如下选择器,

$('selector:eq(1)') //should return you the second element of the matching selector.
于 2012-11-12T15:38:26.163 回答