如果某个变量具有特定值,我必须重定向CF7表单。如果使用有效代码,则此变量的值为“free”,默认情况下为nonfree,且无效代码。
我写了一个简单的js函数:
function page_redirect(){
if (document.getElementById("RasAzT").value != "nonfree") {
pspurl = "/do-some-calculation-and-redirect.php";
window.location = pspurl;
} else {
return true;
}
}
}
我有
on_sent_ok:
$('#hideform').hide();
$('.wpcf7-form.sent p').hide();
page_redirect();
但有时页面没有重定向,我看到CF7谢谢你的消息。