当顶部框架位于Chrome中的另一个域上时,是否可以获取top.location.href?
我刚刚注意到我们在使用时遇到了一个错误:
top.location = top.location.href;
刷新外部页面。然而,当框架位于不同的域时,Chrome 似乎不会为您提供具有属性的 top.location
或 parent.location
对象。有什么解决方法吗?这在 Firefox 中运行良好。
I just noticed we have been having a bug when we've been using:
top.location = top.location.href;
To refresh the outer page. However it seems that Chrome doesn't give you a top.location
or parent.location
object with properties when the frame is on a different domain. Is there any workaround? This works fine in Firefox.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这样做似乎可以实现我想要的:
Doing this seem to accomplish what I want: