确定我是否有权访问 window.opener.parent.document

发布于 2024-10-14 16:15:34 字数 566 浏览 3 评论 0原文

我的网站(站点 1)启动一个窗口,其中包含来自另一个网站(站点 2)的 URL。 我可以修改任一网站中的代码,但它们具有不同的域名。

我在站点 2 中启动的页面具有以下代码,该代码会刷新单击关闭按钮时打开它的页面。

window.opener.parent.document.forms[0].submit();

当页面从站点 2 内启动时工作正常,但从站点 1 内启动时,由于域不同,会出现以下 Javascript 错误:

权限被拒绝获取 窗口.文档

是否有某种方法可以在 Javascript 中检查我是否有权访问开启者的文档?我想保留站点 2 中的刷新功能,但不会在站点 1 中引起错误。

我希望我可以写这样的内容:

if (I have access to window.opener.opener.parent.document)
{
     window.opener.opener.parent.document.forms[0].submit();
}

My website (Site 1) launches a window with the URL from another website (Site 2).
I can modify the code in either website, but they have differen domain names.

The page I am launching in Site 2 has the following code, which refeshes the page that opened it when the close button is clicked.

window.opener.parent.document.forms[0].submit();

Works fine when the page is launched from within Site 2, but from Site 1, gives the following Javascript error, due to the differing domains:

Permission Denied To Get
Window.document

Is there some way of checking, in Javascript, whether I have access to the opener's document? I'd like to retain the refreshing functionality within Site 2, but without causing errors in Site 1.

I'm hoping that there is something like this I can write:

if (I have access to window.opener.opener.parent.document)
{
     window.opener.opener.parent.document.forms[0].submit();
}

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

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

发布评论

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

评论(1

半步萧音过轻尘 2024-10-21 16:15:34

您是否尝试过 JS 的 Try/Catch 构造(http://www.w3schools.com/js/js_try_catch.asp)?

Have you tried the Try/Catch construct of JS (http://www.w3schools.com/js/js_try_catch.asp)?

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