gpt4 book ai didi

javascript - 使用ajax提交表单但重定向到另一个页面

转载 作者:行者123 更新时间:2023-11-29 10:22:29 25 4
gpt4 key购买 nike

如果我想在表单提交时(a)执行某个 php 文件(url-a),我应该在 html 和 jquery 中使用什么? (b) 重定向到另一个。(url-b)

我目前实现了 jquery 表单插件。 http://jquery.malsup.com/form/#getting-started

像这样:

步骤a。包含 jquery 和表单插件脚本;

步骤 b。在 html 中,在表单元素中:

      <form action="url-a.php">
<!--form code inserted here including input elements, etc and submit-->
</form>

步骤c。在 js 中,在 document ready 中:

      $('#form').ajaxForm(function() { 
$.post("url-a.php", {a: a, b: b});
});

是否应该更改其中一个 url 链接?假设 url-a 是 ajax 应该处理的那个,我想重定向到 url-b..

谢谢!

最佳答案

$('#form').ajaxForm(function() { 
$.post("url-a.php", {a: a, b: b});
window.location.href="/url-b.php";
});

关于javascript - 使用ajax提交表单但重定向到另一个页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8768470/

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