<div class="test">使用jquery修改css中带有!important的样式属性</div>
外部样式为
div.test{
width:auto !important;
overflow:auto !important
}
通过$("div.test").css("width","100px");和 $("div.test").css("width","100px !important");要想修改,可通过如下方式:
$("div.test").css("cssText", "width:650px !important;");
要想修改多个属性,可通过如下方式:
$("div.test").css("cssText", "width:650px !important;overflow:hidden !important");