简单的问题,所以我确保在发布之前尝试了很多解决方案。我有一个复选框,我似乎无法启用它。
使用 vanilla JS,我尝试删除该属性,并将禁用标志设置为 false,并且还使用 jQuery,我尝试使用 Prop 没有成功。
'''html
<input type="checkbox" id="chkAllowToAdminService" name="chkAllowToAdminService" disabled="disabled" data-init-plugin="switchery">
'''
我尝试了以下方法,但都没有工作(香草 JS 和 jQuery)
'''
document.getElementById('chkAllowToAdminService').disabled = false;
document.getElementById('chkAllowToAdminService').removeAttribute('disabled);
$('#chkAllowToAdminService').prop("disabled", false);
'''
根本没有错误消息,似乎什么都没有发生。