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 回调?
基础教程推荐
- WPF 模态进度窗口 2022-01-01
- 如果有人提交恶意软件Nuget包怎么办? 2022-01-01
- C# 从 List<List<int>> 中删除重 2022-01-01
- 我应该在后面的代码中直接使用 Linq To SQL 还是使 2022-01-01
- Moq It.Is<>不匹配 2022-01-01
- 如何使用 .Net 检查 Active Directory 服务器是否已启动并正在运行? 2022-01-01
- 禁止输入少量字符,例如'<'、'&a 2022-01-01
- Azure Functions:CosmosDBTrigger 未在 Visual Studio 中触发 2022-01-01
- 当值可以是对象或空数组时反序列化 JSON 2022-01-01
- .NET SerialPort DataReceived 事件未触发 2022-01-01
