清除表单并重定向回索引

时间:2014-06-23 09:22:49

标签: javascript php html

我有一个表单,它接受输入并将其输入数据库。这很好,工作得很好,除了我遇到清除表单的问题。在Wamp中它只需要我联系Form.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();
}

3 个答案:

答案 0 :(得分:1)

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

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

答案 1 :(得分:0)

function clearForm(){
      alert("Thanks, we will be in touch shortly");
      window.location='http://stackoverflow.com';
}

除非您使用其他元素来保存详细信息,否则无需专门清除表单。当您移动到新页面时,表单将被遗忘。

答案 2 :(得分:0)

function clearForm() {
    alert("Thanks, we will be in touch shortly");
    window.location='http://stackoverflow.com';
}