14

需要从http://sitename.com/cat/index.php重定向到http://sitename.com/cat/index.php#anchor

我尝试了 2 种方法:php 重定向和元刷新

PHP 重定向

<?php
    $URL = "http://sitename.com/cat/index.php#anchor";
    header("Location: $URL");
?>
<html>
....

元刷新

<html>
    <head>
    ... 
    <meta http-equiv="refresh" content="0;url=http://sitename.ru/cat/index.php#anchor">
    ...
    </head>
...
</html>

结果是两种方式我都有循环页面刷新。

如何正确解决这个问题?

4

1 回答 1

9

您不需要重定向页面,只需设置window.location.hash.

window.location.hash="anchor";
于 2012-08-31T13:00:20.340 回答