jQuery:在提交之前阻止默认(附加功能),但是在成功验证之后

时间:2018-08-10 14:57:37

标签: jquery jquery-validate

提交表单之前,我需要做一些额外的功能(将隐藏字段动态添加到表单中)。

但是我也在使用jQuery Validate。如何确保成功执行jQuery Validate之后(无错误)但在实际提交之前执行以下代码?

我不想直接在jQuery Validate块中添加此自定义处理程序。提交功能与验证代码并没有真正的联系。

 // This handler should only be invoked after jQuery Validate successfully
 // completes with no errors, otherwise it should never get here
 $('#submitButton').click(function(e){
     e.preventDefault();
     myExtraCode();
     $('#formId').submit();
 });

0 个答案:

没有答案