Safari的Meta Refresh

时间:2012-08-29 15:27:25

标签: asp.net safari refresh meta-tags page-refresh

我使用元刷新,但它不起作用'Safari'。我该怎么办?

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

2 个答案:

答案 0 :(得分:0)

Safari不支持..而且你并不是唯一一个问过这个问题的人。 有两种可能性:

  1. 按一下按钮让用户刷新页面
  2. 使用Ajax可以更新您网站的部分内容
  3. 希望这有帮助!

答案 1 :(得分:0)

根据我在Google上发现的内容;这可能是Safari过去的一个错误,但很多人声称已经解决了。

还有someone提到可能是在Safari中禁用了此特定标头。

如果以上都不起作用,您可以随时使用javascript进行重定向:

function redirect()
{
    setTimeout(function(){window.location='otherpage.html'},5000);//5 secs
}

window.onload=redirect;