jquery removeClass 除了第一项之外的所有项?
我现在正在执行以下操作,效果很好:
$('#picker a').removeClass('selected');
其中:
<div id="picker">
<a href="" class="selected">Stuff</a>
<a href="" class="selected">Stuff</a>
<a href="" class="">Stuff</a>
<a href="" class="selected">Stuff</a>
</div>
如何更新 jQuery 来删除从除第一行之外的所有行中选择的类。忽略选择器中的第一行。
谢谢
I'm doing the following right now which works great:
$('#picker a').removeClass('selected');
where:
<div id="picker">
<a href="" class="selected">Stuff</a>
<a href="" class="selected">Stuff</a>
<a href="" class="">Stuff</a>
<a href="" class="selected">Stuff</a>
</div>
How can I update the jQuery to say, remove class selected from all BUT the first row. Ignore the first row in picker.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这使用了有效的
querySelectorAll
选择器以及slice()
< i>(docs) 方法,速度非常快。This uses a valid
querySelectorAll
selector, along with theslice()
(docs) method which will be very fast.否定
:first
,如下所示:Negate
:first
, like this:也许是这样的:
Maybe like this:
作为替代方案:)
For an alternative :)