如何在 css 列表中使用 jquery 交换 class / id?
我设置了以下小提琴:
基本上我是尝试在单击时交换 li 上的类(即删除类电机,然后添加所选类。
另外,如果我希望使用 Id 而不是类,我应该使用什么代码?
提前致谢。
I have setup the following fiddle:
Basically I am trying to swap the class on a li when clicked (ie. remove the class motor and then add the class selected.
Also if I wished to use Id's instead of classes what code should I use?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
已更新此处。
如果您想使用 ids 而不是类(在这种情况下您可能不应该这样做),您可以将
('.motor')
切换为('#motor')
、removeClass('motor')
与removeAttr('id')
,然后addClass('selected')
与attr('id','所选')
。同样,在这种情况下,上课会更好。updated here.
If you wanted to use ids instead of classes (which you probably shouldn't in this situation), you would switch
('.motor')
with('#motor')
,removeClass('motor')
withremoveAttr('id')
, and thenaddClass('selected')
withattr('id','selected')
. Again, classes are better in this situation.你可以:
如果你想改变 Ids,你可以使用不同的选择器:
You could just:
And if you wanna change for Ids you can use a diferent selector: