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

欢迎来到Altaba的博客 2017年2月19日

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