使用JavaScript修改偽類樣式的方法
阿新 • • 發佈:2019-01-26
歡迎來到Altaba的部落格 2017年2月19日
專案中時常會需要用到使用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切換<p>
.green::before {
content: 'green';
color: green;
}
$('p').removeClass('red').addClass('green');
方法二:在已存在的<style>
中動態插入新樣式。
document.styleSheets[0].addRule('.red::before','color: green');
document.styleSheets[0].insertRule('.red::before { color: green }', 0);
方法三:建立一份新的樣式表,並使用JavaScript或jQuery將其插入到
<head>
中
// 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');
自己測試過這些方法,都可以解決修改偽類樣式,但是都存在侷限性,希望給讀者能提出更好的解決方法,希望前端能夠越來越強大。