jquery选择器仅选择类名为X的第二个div

时间:2012-11-12 15:37:37

标签: jquery

页面中有许多具有相同类名的div。如何使用jquery仅选择具有特定类名的第二个div,而不是其他任何内容? 谢谢!!

1 个答案:

答案 0 :(得分: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.