使用 jQuery 修改 css 中带有 !important 的样式属性

Posted 张小琪

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用 jQuery 修改 css 中带有 !important 的样式属性相关的知识,希望对你有一定的参考价值。

外部样式为:

div.test {
    width:auto !important;
    overflow:auto !important
}

  

通过 $("div.test").css("width","100px"); 和 $("div.test").css("width","100px !important"); 是无效的

要想修改 div 的 width,可以通过如下这种方式:

1
$("div.test").css("cssText", "width:650px !important;");

 

  

要想修改多个属性,可以这么做:

1
$("div.test").css("cssText", "width:650px !important;overflow:hidden !important");

 

特别注意:

cssText 属性,会把先前的 css 值全部给覆盖掉,为了保留先前其他的样式,可以这么做:

1 1
2 2
3 var cssText = $("div.test").attr("style") + ";width:650px !important;";
4 $("div.test").css("cssText": cssText);

 

以上是关于使用 jQuery 修改 css 中带有 !important 的样式属性的主要内容,如果未能解决你的问题,请参考以下文章

django 1.3 中带有 jquery 和 $.post 的 CSRF

MVC4 中带有 jquery.validate.unobtrusive 的文件

.append 中带有三元 `:?` 运算符的 jQuery 错误?

在rails中带有jquery参数的link_to

$.each() 中带有 CSS 变量的样式

js修改样式css都有哪些方法呢?