gpt4 book ai didi

javascript - 清除表单并重定向回索引

转载 作者:行者123 更新时间:2023-12-03 12:22:43 25 4
gpt4 key购买 nike

我有一个表单,它接受输入并将其输入数据库。这很好并且工作完美,除了我在清除表格时遇到了问题。在 Wamp 中,它仅将我带到 contactForm.php,这是一个空白页面。我一直在尝试找到一种将用户重定向回index.php 并清除表单的方法。通过搜索,我尝试了一些事情(可能是错误的),包括将其放在我的 php 末尾:

header('Location: http://stackoverflow.com');

我也尝试编写一个 JS 函数来做到这一点

<p><input type="submit" name="submit" value="Submit" onclick="clearForm();"></p>

js

function clearForm(){
alert("Thanks, we will be in touch shortly");
document.getElementById("contactForm").reset();
}

最佳答案

function clearForm(){
alert("Thanks, we will be in touch shortly");
window.location=ur_url_here;
}

当您获得重定向表单时,将自动重置

关于javascript - 清除表单并重定向回索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24362447/

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