0

嗨,我正在使用 jquery

我想给important property标签添加css颜色

我目前正在尝试

 jQuery(this).css('color','green !important')

不用上课

label_class
{
    background-color:#f2f2f2 !important;
}

并使用喜欢

jQuery(this).addClass('label_class');

我可以只用jquery来做吗,请帮忙

4

2 回答 2

3

是的,它并不难,但你应该尽量避免使用 !important 。

$("#tabs").css("cssText", "height: 650px !important;");

Heres a link to similar question How to include !important in jquery

希望这可以帮助 :)

于 2012-08-02T07:59:02.010 回答
3

你永远不需要这样做。!important 标志表示样式应该优先。使用 jQuery,您将样式内联应用于元素,因此它已经具有最高优先级。

请注意,如果您正在使用!important,您可能做错了什么。考虑重组您的 CSS 选择器以确保您不需要它。

于 2012-08-02T07:59:09.857 回答