我們都聽過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: 'red'; color: red; }
方法一
#使用JavaScript或jQuery切換e388a4556c0f65e1904146cc1a846bee元素的類別名,修改樣式。
.green::before { content: 'green'; color: green; } $('p').removeClass('red').addClass('green');
方法二
在已存在的c9ccee2e6ea535a969eb3f532ad9fe89中動態插入新樣式。
document.styleSheets[0].addRule('.red::before','color: green'); document.styleSheets[0].insertRule('.red::before { color: green }', 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('.red::before','color: green'); sheet.insertRule('.red::before { color: green }', 0);
jQuery
$('<style>.red::before{color:green}</style>').appendTo('head');
方法四
使用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; } $('.red').attr('data-attr', 'green');
以上就是我們為大家整理的四種如何用JavaScript修改偽類樣式的方法,希望對大家有幫助。
相關推薦:
#以上是如何用JavaScript修改偽類樣式的詳細內容。更多資訊請關注PHP中文網其他相關文章!