Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我有 10 个链接的列表,并且我想选择前 4 个之后的所有链接,如何?
我正在查看,:eq()但这似乎并没有解决我的问题,因为它是特定的,而不是一个范围。
:eq()
寻找类似的$("a:eq(>4)")东西,希望它有意义。
$("a:eq(>4)")
您可以使用:gt选择器:
:gt
$('a:gt(3)');
使用slice. 它更快。
slice
$('a').slice(4);