json.success重定向到感谢页面

时间:2015-03-05 07:52:45

标签: javascript php json

我在我的一个PHP模板中有这段代码。

// IF successful hide the form and show thanks

if (json.success) {
    $('#payment-form').hide();
    $('#thank-you').show();
}

如果我想重定向到thank-you.php而不是显示#shanve-you使用此代码是否可行,或者我是否必须做其他事情?

2 个答案:

答案 0 :(得分:1)

您可以通过更改location.href属性:

重定向到新页面
if (json.success) {
    location.href = '/thank-you.php';
}

答案 1 :(得分:0)

使用此

if (json.success) {
   window.location.href = 'thank-you.php';
}