双态按钮

<button>双态按钮</button>

□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□html

.down{
    background-color: lightcoral;
    border: 2px solid black;
}

□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□css

$("button").click(function(){
    var $test = $(this)
    if($test.hasClass("down")){
        $test.removeClass("down")
    }else{
        $test.addClass("down")
    }
})

□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□□jq

posted @ 2022-01-05 18:32  lijian8887833  阅读(52)  评论(0编辑  收藏  举报