我希望在提交表单后调用一个函数,我看到我们可以使用.submit(handler function())
在jQuery中执行此操作,但方法描述说,处理程序方法将在表单提交之前执行。我怎么能真正达到这个目的?我应该在提交表单后使用setTimeout
还是有其他解决方案?
答案 0 :(得分:2)
$("#myFormId").on('submit', function(e) {
e.preventDefault();
$.ajax({
type: $(this).prop('method'),
url : $(this).prop('action'),
data: $(this).serialize()
}).done(function() {
doYourStuff();
});
});
答案 1 :(得分:0)
你可以使用插件http://www.malsup.com/jquery/form/#ajaxSubmit并在回调方法上做你需要的事情成功
$(document).ready(function() {
var options = {
target: '#output2', // target element(s) to be updated with server response
success: function() {
// callback code here
}
};
// bind to the form's submit event
$('#myForm2').submit(function() {
$(this).ajaxSubmit(options);
return false;
});
});
答案 2 :(得分:0)
流速:
它使用所有主流浏览器都支持的会话存储。
<html>
<body onload="checkSubmitStatus()">
<form name="text" action="">
<input type="text" id="txtId">
<input type="submit" value="submit" onclick="storeInSession()"/>
</form>
<script type="text/javascript">
function storeInSession(){
window.sessionStorage['submit'] = document.getElementById('txtId').value;
}
function checkSubmitStatus(){
if(window.sessionStorage['submit']){
alert('The form was submitted by '+ window.sessionStorage['submit']);
window.sessionStorage['submit'] = '';
}
}
</script>
</body>