php js修改样式,如何用JavaScript修改伪类样式

我们都听说过css伪类但是并没有听说过JavaScript也有伪类,项目中时常会需要用到使用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');

方法二

在已存在的

document.styleSheets[0].insertRule('.red::before { color: green }', 0);

方法三

创建一份新的样式表,并使用JavaScript或jQuery将其插入到

中// 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$('').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修改伪类样式的方法,希望对大家有帮助。

相关推荐:

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值