标签: jquery
如何使用jQuery选择下一个具有类“foo”的隐藏元素?
答案 0 :(得分:3)
Boldewyn的回答有效,但filter是不必要的。这也只选择隐藏的元素:
filter
$(this).nextAll('.foo:hidden:lt('+n+')')
答案 1 :(得分:2)
使用nextAll()和filter():
$(this).nextAll().filter('.foo:hidden:lt('+n+')');
:lt()选择器会选择下一个n元素,:hidden选择器隐藏输入。
:lt()
n
:hidden
答案 2 :(得分:0)
$(this).nextAll('.foo:hidden').filter(':lt('+n+')')