如何使用 jQuery 以这种方式提交两个表单?

发布于 2024-10-05 05:24:48 字数 287 浏览 2 评论 0原文

<form id="form1">...</form>
<form id="form2">...</form>

我想先将 form1 提交到 host1 进行验证,如果响应为 true 然后将 form2 提交到 host2,两者都应该使用POST

如何使用 jQuery 做到这一点?

<form id="form1">...</form>
<form id="form2">...</form>

I want to submit form1 to host1 first for validation,if the response is true then submit form2 to host2,both should be using POST.

How to do this with jQuery?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

寒江雪… 2024-10-12 05:24:48

进行一次 AJAX 调用,成功后再进行一次。这是 API 链接

Do an AJAX call, on success do another. here is the API Link

轻许诺言 2024-10-12 05:24:48

这是使用 AJAX 的实现

$("#form1").submit(function(){
    $.post( $(this).attr("action"), $(this).serialize(),
        function(){
            $.post( $("#form2").attr("action"), $("#form2").seriallize(),
                function(){
                    alert("Now what?");
                });
        });
});

这里不是检查响应是否为“true”,而是假设只有验证通过为“true”时才会有成功的响应

Here's an implementation using AJAX

$("#form1").submit(function(){
    $.post( $(this).attr("action"), $(this).serialize(),
        function(){
            $.post( $("#form2").attr("action"), $("#form2").seriallize(),
                function(){
                    alert("Now what?");
                });
        });
});

Here instead of checking for the response to be 'true' I just assume that it will only have a successful response if the validation passes as 'true'

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文