gpt4 book ai didi

ajax - 如何将成功行为绑定(bind)到另一个 ajax 表单提交?

转载 作者:行者123 更新时间:2023-12-01 02:45:23 25 4
gpt4 key购买 nike

类似于this question ,我想在成功提交 ajax 表单时运行一个函数,但我无法直接访问加载表单的初始 ajax 代码。

如果我无法将代码添加到初始 ajax 成功调用中,如何检查表单是否成功?

$('#registration-form').submit( function() {
alert('registered successfully');
});

最佳答案

尝试将 .ajaxSuccess() 绑定(bind)到您的元素 http://api.jquery.com/ajaxSuccess/

$('#registration-form').ajaxSuccess(function() {
alert('registered successfully');
});

Whenever an Ajax request completes successfully, jQuery triggers the ajaxSuccess event. Any and all handlers that have been registered with the .ajaxSuccess() method are executed at this time.

关于ajax - 如何将成功行为绑定(bind)到另一个 ajax 表单提交?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12077016/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com