开窗器 &脸盒

发布于 2024-08-15 05:06:15 字数 133 浏览 12 评论 0原文

我在 Facebook 上打开了一个窗口。现在,我想发送一些数据到打开的窗口 当facebox窗口关闭时。我知道如何使用普通的弹出窗口来做到这一点,但不知道如何使用 Facebox,而且这里似乎没有太多好的文档。

知道如何做到这一点吗?

I opened a window in facebox. Now, I want to send some data to the opening window
when the facebox window closes. I know how to do this with a normal pop-up but not with facebox and there doesn't seem to be much in the way of good documentation here.

Any idea how to do this?

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

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

发布评论

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

评论(1

故事与诗 2024-08-22 05:06:15

“发送一些数据到打开的窗口”的唯一方法是使用 postMessage 窗口的方法(或者您可以更改窗口的 name 属性,但这将从 Firefox 的未来版本中删除)。您需要使用 window.opener && window.opener.postMessage(your_message, facebook_origin)。如果您的意思是“向 Facebook 发送一些数据”,则需要使用 XMLHttpRequest 来发送相同的数据-源代理或使用跨域请求(如果 Facebook 允许)。

编辑:抱歉,我将 Facebox 误读为 Facebook,这是一个外部网站。

The only way to "send some data to the opening window" is to use the postMessage method of the window (or you could change the window's name property, but this is being removed from future versions of Firefox). You would want to use window.opener && window.opener.postMessage(your_message, facebook_origin). If you meant "send some data to Facebook", you would want to use XMLHttpRequest to a same-origin proxy or use a cross-domain request if Facebook allows it.

Edit: Sorry, I misread Facebox as Facebook, which is an external site.

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