我想设置一个菜单来将用户引导到同一页面,但位置不同
<ul>
<li><a href="realtime.php#location1">location 1 in page</a></li>
<li><a href="realtime.php#location2">location 2 in page</a></li>
</ul>
这是页面的html:(realtime.php)
<div id="location1" name="location1"></div>
<some html....>
<div id="location1" name="location1"></div>
<some other html...>
它对我不起作用: 1. 它没有重定向到页面内的正确位置 2. 如果我正在查看当前页面,它什么也不做 -> 意味着甚至不会重新加载页面。