首頁  >  文章  >  web前端  >  如何用JavaScript修改偽類樣式

如何用JavaScript修改偽類樣式

小云云
小云云原創
2017-11-29 09:42:163348瀏覽

我們都聽過css偽類但是並沒有聽過JavaScript也有偽類,專案中時常會需要用到使用JavaScript來動態控制偽元素(:before,:after)的樣式,但是我們都知道JavaScript或jQuery並沒有偽類選擇器。這裡總結一下幾種常見的方法。

HTML

<p class="red">Hi, this is a plain-old, sad-looking paragraph 
tag.</p>
CSS
.red::before {
content: &#39;red&#39;;
color: red;
}

方法一

#使用JavaScript或jQuery切換e388a4556c0f65e1904146cc1a846bee元素的類別名,修改樣式。

.green::before {
content: &#39;green&#39;;
color: green;
}
$(&#39;p&#39;).removeClass(&#39;red&#39;).addClass(&#39;green&#39;);

方法二

在已存在的c9ccee2e6ea535a969eb3f532ad9fe89中動態插入新樣式。

document.styleSheets[0].addRule(&#39;.red::before&#39;,&#39;color: green&#39;);
document.styleSheets[0].insertRule(&#39;.red::before { color: green }&#39;, 0);

方法三

建立一份新的樣式表,並使用JavaScript或jQuery將其插入93f0f5c25f18dab9d176bd4f6de5d30e中

// Create a new style tag
var style = document.createElement("style");
// Append the style tag to head
document.head.appendChild(style);
// Grab the stylesheet object
sheet = style.sheet
// Use addRule or insertRule to inject styles
sheet.addRule(&#39;.red::before&#39;,&#39;color: green&#39;);
sheet.insertRule(&#39;.red::before { color: green }&#39;, 0);

jQuery

$(&#39;<style>.red::before{color:green}</style>&#39;).appendTo(&#39;head&#39;);

方法四

使用HTML5的data-屬性,在屬性中使用attr()動態修改。

<p class="red" data-attr="red">Hi, this is plain-old, sad-looking paragraph tag.</p>
.red::before {
content: attr(data-attr);
color: red;
}
$(&#39;.red&#39;).attr(&#39;data-attr&#39;, &#39;green&#39;);

以上就是我們為大家整理的四種如何用JavaScript修改偽類樣式的方法,希望對大家有幫助。

相關推薦:

CSS3偽類如何做3D按鈕的實例分析

CSS中關於focus偽類的使用實例詳解

偽類選擇器總表

#

以上是如何用JavaScript修改偽類樣式的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn