JavaScript跨域问题
我们的网站提供了一个要安装在页面中的小部件(一段 Javascript,它编写了一个 iframe 元素,并在其中呈现内容,您可以看到 rss、图像和其他内容)。
在用户执行一些操作后,我需要将页面(小部件所在的位置)重定向到另一个位置,但禁止使用 top.document.location
因为页面和小部件生成的 iframe位于不同的位置,并且使用 window.open
通常会被弹出窗口阻止程序阻止。
我该怎么做?
Our website gives a widget to be installed in pages (a piece of Javascript that writes an iframe element and inside it renders things and you see rss, images, and other stuff).
I need, after the user do some stuff, to redirect the page (where the widget is) to another location, but using top.document.location
is forbidden since the page and the iframe generated by the widget are in different location, and using window.open
is usually blocked by popup blockers.
How can i do it ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试:
Try:
尽管不允许从
top
窗口读取属性,但其中一些属性可以写入 - 其中之一是位置代码>.
只需这样做
,它就会很好地重定向。
Although reading properties from the
top
window is disallowed, some of them are open to writing - and one of these arelocation
.Simply do
and it will redirect just fine.