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

大神们在线求帮请教下,如何使用jquery修改css中带有,important的样式属性
最新回答
散步的月光

2024-10-02 05:20:28

使用cssText属性批量修改

$('.box').css('cssText','width:100px!important;height:200px!important;');//后面直接写css的样式就好

在js中也是有cssText的方法的,可以批量修改dom的css样式,可以试试

var box = document.getElementById('');

box.style.cssText = "";

一身懵逼正气

2024-10-02 06:09:47

你好,给你个参考
$("div.test").css("cssText", "width:650px !important;overflow:hidden !important");