您好我正在使用jquery
我想将important property
的css颜色添加到标签
我目前正在尝试
jQuery(this).css('color','green !important')
没有使用类
喜欢
label_class
{
background-color:#f2f2f2 !important;
}
并使用like
jQuery(this).addClass('label_class');
我可以只使用jquery来做这件事,请帮忙
答案 0 :(得分:3)
你永远不需要这样做。 !important标志表示样式应该优先。使用jQuery,您将内联样式应用于元素,因此它已具有最高优先级。
请注意,如果您使用的是!important
,那么您可能做错了什么。考虑重构CSS选择器以确保您不需要它。