奇怪的行为历史记录。回到 iframe 内
有一个页面有两个 iframe:
<iframe src="fr1.html" name="fr1"></iframe>
<iframe src="fr2.html" name="fr2"></iframe
iframe 分别包含代码:
<a href="next_fr1.html">next<a/>
<div>frame 1</div>
和
<a href="next_fr2.html">next<a/>
<div>frame 2</div>
。
页面 next_fr1.html
和 next_fr2.html
分别包含以下代码:
<a href="javascript:parent.frames.fr1.history.back();">back<a/>
<div>next frame 1</div>
和
<a href="javascript:parent.frames.fr2.history.back();">back<a/>
<div>next frame 2</div>
。
在第一页上,我单击:
- 第一个 iframe 中的“下一个”
- 第二个 iframe 中的“下一个”
- 第一个 iframe 中的“后退”
第三次单击后返回到第二个 iframe 中(就像浏览器中的后退按钮一样),而不是返回到第一个 iframe?
there is the page with two iframes:
<iframe src="fr1.html" name="fr1"></iframe>
<iframe src="fr2.html" name="fr2"></iframe
iframes contain code:
<a href="next_fr1.html">next<a/>
<div>frame 1</div>
and
<a href="next_fr2.html">next<a/>
<div>frame 2</div>
respectively.
Pages next_fr1.html
and next_fr2.html
contain this code:
<a href="javascript:parent.frames.fr1.history.back();">back<a/>
<div>next frame 1</div>
and
<a href="javascript:parent.frames.fr2.history.back();">back<a/>
<div>next frame 2</div>
respectively.
On the first page i clicked:
- "next" in the first iframe
- "next" in the second iframe
- "back" in the first iframe
After 3rd click is back in the second iframe (as if back button in browser) and not back in the first iframe?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
框架没有单独的历史记录,页面也保存所有框架的历史记录。
当您调用
history.back
时,它会转到页面历史记录中的上一步,因此它将返回到上次导航发生的框架中。The frames doesn't have separate histories, the page holds the history for all frames also.
When you call
history.back
it goes to the previous step in the history of the page, so it will go back in the frame where the last navigation occured.