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 回调?
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- 输入按键事件处理程序 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- 如何用自己压缩一个 IEnumerable 2022-01-01
- C#MongoDB使用Builders查找派生对象 2022-09-04
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01
