作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要帮助来禁止复选框在第一次被选中后再次被选中。
这是我到目前为止所做的。
<label class="checkbox-inline"><input type="checkbox" id="checked" onclick="check();"></label>
<script type="text/javascript">
function check() {
if($("#checked").is(":checked")){
alert("Thanks for Attending");
$(this).attr('disabled','disabled');
}
}
}
</script>
最佳答案
请检查此代码段。
function check() {
if($("#checked").is(":checked")){
alert("Thanks for Attending");
//Code to disable checkbox after checked
$('#checked').attr('disabled', true);
}
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<label class="checkbox-inline"><input type="checkbox" id="checked" onclick="check();"></label>
关于jquery - 选中后禁用复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38681687/
我是一名优秀的程序员,十分优秀!