我删除了支票并禁用了一个复选框:
$('#h12_1').removeAttr('checked');
$("#h12_1").prop("disabled", true);
然后我想再次启用它,然后检查它。
$('#h12_1').removeAttr('disabled');
$('#h12_1').attr('checked','checked');
上面的语法重新启用了复选框,但没有检查它。
我错过了什么吗?一如既往的帮助。
答案 0 :(得分:3)
而不是
$('#h12_1').attr('checked','checked');
尝试这样的事情
$('#h12_1').prop("checked",true);