如何将边框右颜色更改为类:之后
这个css很正常
.profile-options a div:after {
border-color: transparent #999999 transparent transparent;
border-style: solid;
border-width: 18px;
content: "";
display: block;
left: -15px;
margin-top: -33px;
position: absolute;
z-index: 999;}
当 jquery 选择时,我需要将 #999999 设置为 #333333
我试过了,但似乎不起作用
$(".profile-options a div:after").css({"borderRightColor":"#999"});
$(".yourOptions1:after").css({"borderRightColor":"#333"});