如何在父窗口重新加载后获取所有打开的子窗口的引用
我将子窗口的引用存储在变量中,如下所示。
var mychildWindow = window.open(url,name,params);
当父窗口刷新/重新加载时如何获取子窗口实例?
任何围绕弹出聊天的解决方案或像 Facebook 所做的那样。
提前致谢
I am storing the reference of child window in variable as below.
var mychildWindow = window.open(url,name,params);
When the parent window refresh/reload how to get the child window instance??
Any work around or like Facebook did for pop out chat.
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Facebook 不使用(据我所知)window.open - 他们使用面板 - 在主要内容上方浮动一个 div - 看看 YUI 面板的例子。
Facebook doesn't use (to my knowledge) window.open - they use panels - floating divs a layer above the main content - have a look at the YUI Panel for an example.
如果您可以控制两个窗口,则子窗口可以按一定时间间隔向父窗口发送信标:“我是你的孩子,我是你的孩子,我是你的孩子”。
http:// /abcoder.com/javascript/maintain-reference-to-popup-window-over-page-refresh-or-redirect-in-javascript-solved
不幸的是,我可能会在子窗口中打开任何网址,所以我没有对此进行控制。
If you have control over both windows, the child window can send a beacon to the parent on an interval: "I'm your child, I'm your child, I'm your child".
http://abcoder.com/javascript/maintain-reference-to-popup-window-over-page-refresh-or-redirect-in-javascript-solved
Unfortunately, I'm opening potentially any url in the child window, so I don't have control over that.