在jquery的css之前将css添加到children元素

时间:2016-04-01 07:38:02

标签: jquery html css

我希望在CSS元素之前将jquery中的类添加到选定的元素::我该怎么办?有什么帮助吗?

这是一个截图。

enter image description here

我想从jquery为上面的元素添加CSS。

1 个答案:

答案 0 :(得分:2)

同样的问题: Access the css ":after" selector with jQuery

您必须直接向该元素添加一个类,然后将其设置为:之前

示例 HTML:

<div>
  text
</div>

CSS:

.before-styling::before{
  content:'before';
}

JS:

$("div").addClass('before-styling');

https://jsfiddle.net/gpydysgm/