开窗器 &脸盒
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“发送一些数据到打开的窗口”的唯一方法是使用 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 usewindow.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.