JavaScript跨域问题

发布于 2024-10-21 09:40:46 字数 261 浏览 4 评论 0原文

我们的网站提供了一个要安装在页面中的小部件(一段 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 技术交流群。

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

发布评论

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

评论(2

单身情人 2024-10-28 09:40:46

尝试:

window.location.href = "url"; 

Try:

window.location.href = "url"; 
仅此而已 2024-10-28 09:40:46

尽管不允许从top窗口读取属性,但其中一些属性可以写入 - 其中之一是位置代码>.

只需这样做

top.location = "http://foo/bar"; 

,它就会很好地重定向。

Although reading properties from the top window is disallowed, some of them are open to writing - and one of these are location.

Simply do

top.location = "http://foo/bar"; 

and it will redirect just fine.

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