2

我已经知道如何使用 a meta refresh,但问题是它破坏了某些浏览器中的后退按钮。

这是一个元刷新标签:

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

我想知道是否有替代方法?

4

2 回答 2

0

我推荐 PHP,因为您也可以有条件地重定向。

重定向到 Example.COM:

<?php header("Location: http://example.com"); ?>
于 2013-05-02T16:07:26.610 回答
0

使用与问题中的功能非常相似的 java 脚本重定向:

window.location.replace("http://google.com/");
于 2013-05-02T16:04:43.813 回答