码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2020-02-24 18:18:08      阅读:68      评论:0      收藏:0      [点我收藏+]

标签:child   常见   obj   方法   使用   pen   sheet   式表   color   

前言

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

Javascript:

// 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修改伪类样式的方法

标签:child   常见   obj   方法   使用   pen   sheet   式表   color   

原文地址:https://www.cnblogs.com/kunmomo/p/12358005.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!