gpt4 book ai didi

jquery - 选中后禁用复选框

转载 作者:行者123 更新时间:2023-12-04 03:20:30 24 4
gpt4 key购买 nike

我需要帮助来禁止复选框在第一次被选中后再次被选中。

这是我到目前为止所做的。

<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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com