访问CSS“:”带有jQuery的选择器我有以下CSS:.pageMenu .active::after {
content: '';
margin-top: -6px;
display: inline-block;
width: 0px;
height: 0px;
border-top: 14px solid white;
border-left: 14px solid transparent;
border-bottom: 14px solid white;
position: absolute;
right: 0;}我想使用jQuery更改顶部、左侧和底部边框的边框宽度。我用来访问这个元素的选择器是什么?我试过以下几种方法,但似乎不起作用。$('.pageMenu .active:after').css(
{
'border-top-width': '22px',
'border-left-width': '22px',
'border-right-width': '22px'
}
)
添加回答
举报
0/150
提交
取消