首页 > 代码库 > 使用 jQuery 修改 css 中带有 !important 的样式属性
使用 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 的样式属性
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。