欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

利用伪元素设置元素是否选中状态

程序员文章站 2024-01-29 23:45:58
...

利用伪元素设置元素是否选中状态

li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: .36rem;
    height: .36rem;
    margin-top: -.18rem;
    border-radius: .36rem;
    border: .01rem solid #279ECD;
}

li.active::before {
    background-color: #279ECD;
}

$('ul').click('click','li',function(){
    $(this).addClass("active").siblings().removeClass("active");
})