亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

如何使用jquery修改css中帶有!important的樣式屬性

 更新時(shí)間:2016年04月28日 15:21:36   投稿:jingxian  
如何使用jquery修改css中帶有!important的樣式屬性?下面小編就為大家?guī)硪黄褂胘query修改css中帶有!important的樣式屬性方法。希望對(duì)大家有所幫助。一起跟隨小編過來看看吧

<div class="test">使用jquery修改css中帶有!important的樣式屬性</div>

外部樣式為:

div.test{
  width:auto !important;
  overflow:auto !important
}

通過 $("div.test").css("width","100px");和 $("div.test").css("width","100px !important");是無效的

要想修改div的width,可以通過如下這種方式:

$("div.test").css("cssText", "width:650px !important;");要想修改多個(gè)屬性,可以這么做:

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

以上這篇如何使用jquery修改css中帶有!important的樣式屬性就是小編分享給大家的全部?jī)?nèi)容了,希望能給大家一個(gè)參考,也希望大家多多支持腳本之家。

相關(guān)文章

最新評(píng)論