使用JavaScript修改伪类样式的方法总结

英文原文:modify-pseudo-elements-css
译文地址:http://w3ctrain.com/2015/07/21/modify-pseudo-elements-css/

项目中时常会需要用到使用JavaScript来动态控制为元素(:before,:after)的样式,但是我们都知道JavaScript或jQuery并没有伪类选择器。这里总结一下几种常见的方法。

HTML

Hi, this is a plain-old, sad-looking paragraph tag.

CSS

.red::before {
    content: 'red';
    color: red;
}

方法一

使用JavaScript或者jQuery切换

元素的类名,修改样式。

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

方法二

在已存在的').appendTo('head');

方法四

使用HTML5的data-属性,在属性中使用attr()动态修改。

Hi, this is plain-old, sad-looking paragraph tag.

.red::before { content: attr(data-attr); color: red; } $('.red').attr('data-attr', 'green');

你可能感兴趣的:(使用JavaScript修改伪类样式的方法总结)