jquery を使用して css_jquery の ! important でスタイル属性を変更する方法
jquery を使用して css で ! important でスタイル属性を変更する
外部スタイル:
p.test{ width:auto !important; overflow:auto !important }
$("p.test").css("width","100px") および $("p.test" 経由) ").css("width","100px ! important"); は無効です
p の幅を変更するには、次のメソッドを使用できます:
$("p.test").css("cssText", "width:650px ! important;"); 複数の属性を変更したい場合は、次のようにすることができます:
$("p.test").css("cssText", "width:650px ! important;overflow:hidden ! important");
上記は、jquery を使用して ! important でスタイルを変更する方法です。 css Attribute_jquery コンテンツのその他の関連コンテンツについては、PHP 中国語 Web サイト (www.php.cn) に注目してください。