我想根据 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............??