在移动 safari 中是否有使用 onbeforeunload 的替代方法?

发布于 2024-11-13 11:47:21 字数 222 浏览 3 评论 0原文

在 mobile-safari 中是否有替代方法可以代替 onbeforeunload ?我注意到 Google 能够捕获 mobile-safari 中的 onbeforeunload 事件。有谁知道他们是怎么做到的吗?

谷歌能够使用他们的 Gmail 客户端来做到这一点。创建新消息...在文本区域中输入内容...点击浏览器后退按钮。它会弹出一条警告消息。我使用 iPad 进行测试。

Is there an alternative method to use instead of onbeforeunload in mobile-safari? I've noticed that Google was able to capture the onbeforeunload event in mobile-safari. Has anyone figured out how they are doing so?

Google was able to do so using their gmail client. Create a new message... type something in the text area... hit the browser back button. It pops up a warning message. I used an iPad to do my test.

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

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

发布评论

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

评论(2

猫九 2024-11-20 11:47:21

我猜他们正在使用 History API。通过监听 popstate,

window.addEventListener("popstate", function(e) { ... });

您可以在允许做任何愚蠢的事情之前显示警告。

I would guess that they are using the History API. By listening to popstate

window.addEventListener("popstate", function(e) { ... });

you can show a warning before allowing doing anything stupid.

嘿看小鸭子会跑 2024-11-20 11:47:21

使用 pagehide 事件 (参考

Use pagehide event (reference)

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