奇怪的行为历史记录。回到 iframe 内

发布于 2024-11-15 15:57:38 字数 955 浏览 1 评论 0原文

有一个页面有两个 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.htmlnext_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>

在第一页上,我单击:

  1. 第一个 iframe 中的“下一个”
  2. 第二个 iframe 中的“下一个”
  3. 第一个 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:

  1. "next" in the first iframe
  2. "next" in the second iframe
  3. "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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

白首有我共你 2024-11-22 15:57:38

框架没有单独的历史记录,页面也保存所有框架的历史记录。

当您调用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文