当用户在输入中键入所有信息并选中复选框时,如何从按钮中删除禁用属性?
我的尝试:
完整代码:http: //jsfiddle.net/7zMRM/1/
$('#id_accept').click(function(){
if($('#id_accept:checked').length == 1 && $('#id_blz').length == 8 && $('#id_account_owner').length > 3 && $('#id_account_number').length == 22 && $('#id_bank_name').length > 3){
$('#open').removeAttr('disabled');
$('#open').attr('onclick','javascript:yourFunctionName();');
}
else{
$('#open').removeAttr('onclick');
$('#open').attr('disabled','disabled');
}
});