这里有两个选项:1)向表单添加一些隐藏信息,告诉您的表单提交脚本它需要在保存信息后重定向到不同的页面:
首先在表单中添加一个隐藏字段:
<input type="hidden" name="redirect" id="redirect" />
然后改变onclick
onclick="document.getElementById('redirect').value='altpayment';this.form.submit;"
并更新您的表单处理程序
<?php
//your normal form submission code, and then...
if(isset($_POST['redirect']) && $_POST['redirect'] == "altpayment"){
header("location: http://www.yoursite.com/book-now-2");
}else{
//whatever you normally do after submitting the form
}
2)使用AJAX提交表单,然后重定向:
创建一个javascript函数
<script>
function submitForm(){
$.ajax({
url: 'some-url',
type: 'post',
dataType: 'json',
data: $('form#myForm').serialize(),
success: function(data) {
window.location.replace("http://www.yoursite.com/book-now-2");
}
});
}
</script>
更改onclick
onclick="submitForm();"
如果您走第二条路线,请确保在您的页面中包含 JQuery 框架并替换#myForm
为您的表单的 ID。