$('p').hide(); $('p:first(or :eq(0)').show()
可能是这样的:
$('p:eq(>0)')
slice()
$('p').slice(1).hide();
…其中1是结果中的第二个元素,0是第一个元素.这更快,因为它使用本机方法而不是自定义过滤器.
或者,您可以使用:not()或.not():
:not()
.not()
$('p:not(:first)').hide(); //or $('p').not(':first').hide();