1

我删除了检查并禁用了一个复选框:

$('#h12_1').removeAttr('checked');
$("#h12_1").prop("disabled", true); 

然后我想再次启用它然后检查它。

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

上述语法重新启用复选框但不选中它。

我错过了什么吗?一如既往的帮助。

4

1 回答 1

3

而不是这个

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

尝试这样的事情

$('#h12_1').prop("checked",true);
于 2013-04-21T20:21:24.650 回答