在浏览器关闭时打开模式窗口?

发布于 2024-07-30 05:01:08 字数 51 浏览 10 评论 0原文

我试图在浏览器窗口关闭时打开模式窗口。 有没有办法通过窗口事件来做到这一点? 谢谢。

I'm trying to open a modal window when the browser window closes.
Is there a way to do this with window events? Thanks.

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

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

发布评论

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

评论(3

超可爱的懒熊 2024-08-06 05:01:09

简短的回答:否:大多数浏览器不会让您知道浏览器何时关闭。

另请参阅:

Java Servlet:如何检测浏览器关闭?

如何捕获 Web 应用程序中浏览器关闭的事件?

Short answer: no: Most browsers don't let you know when the browser is being closed.

See also:

Java Servlet : How to detect browser closing?

How capture event for browser closing in web applications?

猫九 2024-08-06 05:01:09

onbeforeunload 可能是您最好的选择。

onbeforeunload is probably your best bet.

绝對不後悔。 2024-08-06 05:01:09

您可以使用 onunload JavaScript 事件执行您需要的任何操作。 我可能会执行 window.open 而不是尝试创建模式,因为我认为浏览器仍会关闭。 如果您希望这样做,您可以使用 onbeforeunload 事件来显示确认其操作的模式。

You can execute whatever you need to with the onunload JavaScript event. I'd probably do a window.open rather than try to create a modal because I think the browser will still close. You could use the onbeforeunload event to show a modal confirming their action if that's what you're hoping to do.

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