jQuery-checkobx单选框设置选中和取消选中事件

html代码

 <div class="form-check">
     <input class="form-check-input position-static" type="checkbox" id="che" onclick="read()">我已阅读以上条款
 </div>

javascript代码

function read() {
    if($('#che').is(':checked')){
        alert("选中");
    }else {
        alert("未选中");
    }
}
posted @ 2022-10-11 14:49  西北后生  阅读(195)  评论(0编辑  收藏  举报