How to do a Jquery Callback after form submit?(表单提交后如何进行 Jquery 回调?)
问题描述
我有一个带有 remote=true 的简单表单.
I have a simple form with remote=true.
这个表单实际上是在一个 HTML Dialog 上,一旦单击 Submit 按钮就会关闭.
This form is actually on an HTML Dialog, which gets closed as soon as the Submit button is clicked.
现在我需要在表单提交成功后对主 HTML 页面进行一些更改.
Now I need to make some changes on the main HTML page after the form gets submitted successfully.
我用 jQuery 试过这个.但这并不能确保在表单提交的某种形式的响应之后执行任务.
I tried this using jQuery. But this doesn't ensure that the tasks get performed after some form of response of the form submission.
$("#myform").submit(function(event) {
// do the task here ..
});
如何附加回调,以便我的代码只有在表单提交成功后才会执行?有没有办法在表单中添加一些 .success 或 .complete 回调?
How do I attach a callback, so that my code gets executed only after the form is successfully submitted? Is there any way to add some .success or .complete callback to the form?
推荐答案
我刚做了这个 -
$("#myform").bind('ajax:complete', function() {
// tasks to do
});
一切都很顺利.
请参阅此 api 文档了解更多详细信息.
See this api documentation for more specific details.
这篇关于表单提交后如何进行 Jquery 回调?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:表单提交后如何进行 Jquery 回调?
基础教程推荐
- 将事件 TextChanged 分配给表单中的所有文本框 2022-01-01
- 如何动态获取文本框中datagridview列的总和 2022-01-01
- 在 VS2010 中的 Post Build 事件中将 bin 文件复制到物 2022-01-01
- 错误“此流不支持搜索操作"在 C# 中 2022-01-01
- 是否可以在 asp classic 和 asp.net 之间共享会话状态 2022-01-01
- 从 VS 2017 .NET Core 项目的发布目录中排除文件 2022-01-01
- 首先创建代码,多对多,关联表中的附加字段 2022-01-01
- JSON.NET 中基于属性的类型解析 2022-01-01
- 全局 ASAX - 获取服务器名称 2022-01-01
- 经典 Asp 中的 ResolveUrl/Url.Content 等效项 2022-01-01
