如何在父窗口重新加载后获取所有打开的子窗口的引用

发布于 2024-11-25 06:55:32 字数 187 浏览 2 评论 0原文

我将子窗口的引用存储在变量中,如下所示。

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 技术交流群。

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

发布评论

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

评论(2

紧拥背影 2024-12-02 06:55:32

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.

网名女生简单气质 2024-12-02 06:55:32

如果您可以控制两个窗口,则子窗口可以按一定时间间隔向父窗口发送信标:“我是你的孩子,我是你的孩子,我是你的孩子”。

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.

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