1

我无法得到...

<?php
   header( "Refresh: 5; URL=http://www.mywebsite.com" );
?>

...在 Internet Explorer 中工作(该死的!)。

它在 Chrome 中运行良好,如果我使用...

header("Location: http://www.mywebsite.com");

...它适用于两者,但我没有延迟。

4

1 回答 1

4

尝试将其包含为元标记,或通过 JavaScript 重新加载。

元标记:

<meta http-equiv="refresh" content="5;URL='http://example.com/'">

Javascript:

window.onload = new function() {
  setTimeout(function() {
    location.reload();
  }, 5000);
};
于 2012-08-07T20:48:34.840 回答