单击复选框后,我有以下代码用于启用提交按钮。
HTML:
<input type="checkbox" checked="checked" id="check"><a href="#">terms and conditions</a>
<input type="submit" name="submit" id="post" value="submit">
脚本:
$('#check').click(function(){
if($(this).attr('checked') == false){
$('#post').attr("disabled","disabled");
}
else {
$('#post').removeAttr('disabled');
}
});
但这在我的本地主机中不起作用。即使未选中复选框,该按钮也始终处于启用状态。请帮助我使它工作。