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("未选中");
}
}
本文来自博客园,作者:西北后生,转载请注明原文链接:https://www.cnblogs.com/tianyuanblog/p/16779183.html