Javascript top.location.replace 有或没有父 iFrame

发布于 2024-12-02 04:47:30 字数 246 浏览 1 评论 0原文

我正在使用一个框架页面,其中包含以下 Javascript 行:

top.contentsFrame.location.replace("/main.jsp"); 

我想在 iFrame 内以及独立运行此页面。 在 iFrame 中它不起作用,因为 top 属性现在返回 iFrame。所以它再也找不到“contentsFrame”了。

解决这个问题最简单的方法是什么?

干杯!

I am using a frames page, which contains the following Javascript line:

top.contentsFrame.location.replace("/main.jsp"); 

I want to run this page both inside an iFrame, as well as independenty.
In an iFrame it doesn't work, because the top attribute now returns the iFrame. So it can't find "contentsFrame" anymore.

What would be the easiest way to fix this?

Cheers!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

月亮坠入山谷 2024-12-09 04:47:30

你应该使用

parent.top.location.replace("/main.jsp");

you should use

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