早上,
是否有一个我可以在jQuery中使用的通配符,它会从元素中删除一个类?
我正在将新类应用到我的信息消息框中,如果用户单击它一次,然后再次单击它就会添加新类,但保留现有类.
Feeds are complete.
正如你可以看到原来的课程是绿色的,它已经添加了红色.
最佳答案
叶:
原文链接:https://www.f2er.com/css/427568.html$(this).removeClass('er-green');
$(this).addClass('er-red');
或者先将它们全部删除:
If a class name is included as a parameter,then only that class will be removed from the set of matched elements. If no class names are specified in the parameter,all classes will be removed.
$(this).removeClass();
$(this).addClass('er-red');