$("#id")
有没有办法只对页面上带有该ID的第n个元素执行此操作?即
$("#id:n")
从the HTML norm开始:
There must not be multiple elements in a document that have the same id value.
现在假设您想要在页面中获取具有给定类的第n个元素,您可以使用eq:
$('.myclass').eq(index)