如何使用 jQuery 以这种方式提交两个表单?
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
进行一次 AJAX 调用,成功后再进行一次。这是 API 链接
Do an AJAX call, on success do another. here is the API Link
这是使用 AJAX 的实现
这里不是检查响应是否为“true”,而是假设只有验证通过为“true”时才会有成功的响应
Here's an implementation using AJAX
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'