javascript – 使用jQuery删除类

前端之家收集整理的这篇文章主要介绍了javascript – 使用jQuery删除类前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

早上,

是否有一个我可以在jQuery中使用的通配符,它​​会从元素中删除一个类?

我正在将新类应用到我的信息消息框中,如果用户单击它一次,然后再次单击它就会添加新类,但保留现有类.

我需要删除上一个类,然后添加新类的样式.有任何想法吗?

 
Feeds are complete.

正如你可以看到原来的课程是绿色的,它已经添加了红色.

最佳答案
叶:

$(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');
原文链接:https://www.f2er.com/css/427568.html

猜你在找的CSS相关文章