我已经在 jQuery 中设置了一些验证,我想在提交表单之前运行这些验证。但是,当我使用“preventDefault”并尝试在验证通过后最后提交表单时,它不会。
$(function(){
$('#submit').click(function(e){
e.preventDefault();
if(..... // validation done here
....
if(error === 1){
....
}
if(error === 0){
$('#signup').submit(); // not working
}
});
});