页面中有许多具有相同类名的div。如何使用jquery仅选择具有特定类名的第二个div,而不是其他任何内容? 谢谢!!
答案 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.