提交表单之前,我需要做一些额外的功能(将隐藏字段动态添加到表单中)。
但是我也在使用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();
});