关闭动态应用程序的所有子弹出窗口
我们正在使用jsp应用程序,在这里我们可以从任何页面打开帮助窗口(window.open),但是如果打开了该窗口,我们必须在单击注销时将其关闭,不一定在打开帮助窗口的同一页面上,如何获取跨页面打开的窗口的处理程序?
we are using a jsp application, here we can open help window(window.open) from any page, but if that is opened we have to close it on clicking of logout, not necessarily on the same page where the help window was opened, How can i get Handler for a opened window across pages?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我没记错的话,window.open() 返回窗口对象,因此您可以简单地将其保存到变量中。
或者
If my memory serves me right, window.open() returns the window object, so you can simply save it to a variable.
or