欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

JavaScript实现修改伪类样式

程序员文章站 2022-07-06 20:11:05
项目中时常会需要用到使用javascript来动态控制为元素(:before,:after)的样式,但是我们都知道javascript或jquery并没有伪类选择器。这里总...

项目中时常会需要用到使用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');

以上就是我们为大家整理的四种方法,如果大家有更好的方法,可以在下方的留言区讨论。