关于jQuery用css伪类:after为容器添加边框或去掉边框的问题

今天碰到一个问题是要去掉一个div的border,用border:none;没有用,发现border是用伪类加上去的,如下:
.screenBox::after { border-bottom: 1px solid #E1E2E6; }
直接用jquery改变css没有用,还要用伪类方法去掉,如下:

$('.screenBox').append("");

你可能感兴趣的:(jquery)