我一直在寻找一个简单的代码,但我找不到一个适合我的代码。我尝试使用 setInterval ,但结果代码没有做得好。
<?php switch(n){ case 1: //do this; //then go to next page after this seconds; } ?>
我试图将javascript放入switch..case,
echo "<script type='text/javascript'>setInterval(location.href = 'goHere.php', 3000);
</script>"
它指引我进入下一页而不倒计时。任何解决方案?
答案 0 :(得分:2)
你可以使用php的头功能
header( "refresh:5;url=wherever.php" );
如果您想使用javascript,则可以使用setTimeout
setTimeout(function () {
window.location.href= 'http://www.google.com'; // the redirect goes here
},5000);