确定我是否有权访问 window.opener.parent.document
我的网站(站点 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您是否尝试过 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)?