我正在尝试将表单提交后重定向到Wordpress网站的基本网址。
问题是重定向看起来像这样: http://current-url/%3C?php%20echo%20get_site_url();%20?%3E
以下是我的代码:
if (jQuery(".redirecting_content:visible").is(":visible") == true) {
setTimeout(function(){
window.location.replace("<?php echo get_site_url(); ?>");
}, 4000);
};
提前致谢。
答案 0 :(得分:2)
试试这个:
if (jQuery(".redirecting_content:visible").is(":visible") == true) {
var base_url = window.location.protocol + "//" + window.location.host + "/"
setTimeout(function(){
window.location.replace(base_url);
}, 4000);
};