标签: javascript jquery css
如何选择:after的伪类this?
:after
this
我试试
$( this ).find( ':after' ).css("display","block");
但它没有用!
答案 0 :(得分:1)
有一种方法可以直接在jQuery中选择伪类,因为它不是DOM的一部分
您可以追加<style>:
<style>
$('head').append('<style>element:before{ /* apply styles here */ }</style>');