如何使用jquery修改css中带有,important的样式属性

2024-12-31 00:46:00
推荐回答(1个)
回答1:

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

  

外部样式为

[css] view plain copy

  • div.test{  

  • width:auto !important;  

  • overflow:auto !important  

  • }  

  • 通过$("div.test").css("width","100px");和 $("div.test").css("width","100px !important");

  • 要想修改,可通过如下方式:
  • [javascript] view plain copy

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


  • 要想修改多个属性,可通过如下方式:
  • [javascript] view plain copy

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

  • 相关问答