在表单提交时重定向到url

时间:2014-07-01 14:41:10

标签: php jquery html forms url-redirection

您好我正在尝试重定向到表单提交上的URL。这是表格的页面:

http://thesomerset.com/test.php

我正在尝试将提交重定向到此页面:

http://thesomerset.com/resort.php

<script>
  function submitme() {
    window.open("http://www.thenavisway.com/reach/WebServicePost/SubscribeToList.aspx#arr0=" + "&account=15118&password=ddwj49kkyarqdhh6yayq&SubscriptionLists=Website" 
    + $("#email").val() + $("#firstname").val() + $("#lastname").val(), "_blank");
      }
</script>

2 个答案:

答案 0 :(得分:0)

使用window.location重定向而不是打开新窗口。

window.location.href = "google.fr";

How to redirect to another webpage in JavaScript/jQuery?

答案 1 :(得分:0)

根据术语&#34; WebService&#34;的存在来判断以及您在相关网址中的用户名和密码,我猜这是您应该从后端调用的内容,而不是前端。有关在PHP中发送简单的Web请求,请参阅file_get_contents

P.S。如果这是您的密码,您可能想要更改它。