我真的很难弄清楚这一点。但是任何人都可以给我一个示例脚本,我可以将 !important 添加到已经存在的内联 css 中吗?
问问题
948 次
6 回答
3
您可以使用以下代码将 !important 添加到内联中,
假设你想inline
为标签添加 css,div
那么你可以使用下面的代码来做到这一点。
CSS方式
<div style="color:red !important"
jQuery
$('div').attr('style', 'color:red !important;');
于 2013-09-14T04:50:23.333 回答
1
一种非库特定的方法是使用 += 运算符附加!important
到值。
<div style="width:50px;" id="id1"></div>
document.getElementById("id1").style.width += " !important";
于 2013-09-14T05:01:53.307 回答
1
$(element).attr('style', 'height:200px !important;')
于 2013-09-14T04:50:24.020 回答
1
HTML
<div class="yourelementclass"></div>
JS代码
$('.yourelementclass').attr('style', 'width:500px !important;')
这是jsfiddle
于 2013-09-14T04:51:18.037 回答
0
$('img')[0].style.setProperty( 'width', '500px', 'important' );
于 2013-09-14T04:53:31.817 回答