我在用户给出的特定时间后重定向到新页面,如下所示:
html_meta_redirect( 'pagename?page_number='.$f_pageNumber, user_get_pref( 'refresh_delay' )*60 );
有哪些替代方法可以实现这一点?
答案 0 :(得分:1)
<?php
header('location:welcome.html');
?>
标题会重定向到welcome.html页面 请注意,重定向之前不应该有任何echo语句
答案 1 :(得分:0)
试试这个:
<script>
function getLocation() {
window.location = 'placed your URL here';
}
window.setTimeout('getLocation', 5000) // 5000 = 5 seconds
</script>