我有像 jquery选择器 $("li a") 如何修改它以便选择留下第一个锚标记的所有元素? 你可以使用 :gt selector: $("li a:gt(0)") 更新:如果您对性能感兴趣,目前最快的是 $("li a").slice(1) 关于哪些文
$("li a")
如何修改它以便选择留下第一个锚标记的所有元素?
你可以使用:gt
selector:
$("li a:gt(0)")
更新:如果您对性能感兴趣,目前最快的是
$("li a").slice(1)
关于哪些文档说:
Because
:gt()
is a jQuery extension and not part of the CSS
specification, queries using:gt()
cannot take advantage of the
performance boost provided by the native DOMquerySelectorAll()
method. For better performance in modern browsers, use
$("your-pure-css-selector").slice(index)
instead.