我在我的一个PHP模板中有这段代码。
// IF successful hide the form and show thanks
if (json.success) {
$('#payment-form').hide();
$('#thank-you').show();
}
如果我想重定向到thank-you.php
而不是显示#shanve-you使用此代码是否可行,或者我是否必须做其他事情?
答案 0 :(得分:1)
您可以通过更改location.href
属性:
if (json.success) {
location.href = '/thank-you.php';
}
答案 1 :(得分:0)
使用此
if (json.success) {
window.location.href = 'thank-you.php';
}