gpt4 book ai didi

javascript禁用/启用复选框

转载 作者:行者123 更新时间:2023-11-30 08:07:19 26 4
gpt4 key购买 nike

我有以下取消选中复选框的语法。

$('#h12_1').attr('checked','checked');

h12_1 是我的复选框的名称。

如何禁用复选框使其无法被选中?同样,如何再次启用复选框?

像这样:

 $.post('get_as_12', {data:selectedObj.value},function(result) {
alert(result[0]) ;

if(result[0] > 0) {
$('#h12_1').attr('checked','enabled');
$('#h12_1').attr('checked','checked');
} else {
$('#h15_1').attr('disabled');
$('#h15_1').removeAttr('checked');
}
});

最佳答案

要禁用你应该使用disabled属性或属性(后者是preferrable):

$("#h12_1").attr("disabled", "disabled");  // removeAttr("disabled") to enable
// or
$("#h12_1").prop("disabled", true); // false to enable

关于javascript禁用/启用复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16101798/

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