0

这怎么可能?我有这段代码可以满足我一半的需求。它会在单击单选按钮时重定向用户,但表单要么未保存,要么未通过电子邮件提交给我。是否可以让它一次执行 2 个命令?这是代码

<input type="radio" id="display_al" name="display_al" value="display_al" onClick="this.form.action='book-now-2';this.form.submit;"  onMouseOver="style.cursor='hand'">

我在这里想念什么?顺便说一句,我将其用于联系表格,这样人们就会有想法。每当他们选择另一种付款方式时,我都会重定向他们。我想在使用信用卡付款时将它们重定向到更安全的页面。

4

1 回答 1

0

这里有两个选项: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。

于 2013-07-09T02:56:33.593 回答