1

我想根据 iframe 导航更改浏览器中的 URL,例如:

**[URL at navigator: http://localhost/]**

<html>
<body>
<iframe src="http://localhost/?loadiframe=true">
   <!-- this is at the code retrieved by the iframe -->
   <a id="mypage" href="http://localhost/mypage/?loadiframe=true">Navi</a>
</iframe>
</body>
</html>

当用户单击#mypage 链接时,浏览器中的 URL 将是:

http://localhost/mypage/

iframe 的 src 始终相同并不重要。

那可能吗?

也许使用ajax............??

4

2 回答 2

2

看一看:Html5历史api

于 2013-02-26T10:07:14.823 回答
1

如果target将链接的属性设置为_parent,则地址应在父窗口中打开:

<a id="mypage" href="http://localhost/mypage/?loadiframe=true" target="_parent">Navi</a>
于 2013-02-26T10:17:41.227 回答