说我们有
$submitButton.click(function(e){
doSomething(e);
return false;
});
其中$submitButton
是表单提交按钮的jQuery对象。假设doSomething
是一个带有AJAX调用的异步方法。
如果我return true
,那么表单会在doSomething
结束之前提交,所以我想return false
然后doSomething
结束AJAX,在成功回调中,我想要真正提交表格。
这只能使用e
吗?如何?
答案 0 :(得分:2)
$submitButton.click(function(e){
//make doSomething return a promise that you can chain off of
doSomething(e).then(function(){
//submit the parent form
$submitButton.closest('form').trigger('submit');
});
//cancel the click and wait for the ajax to finish
return false;
});