在移动 safari 中是否有使用 onbeforeunload 的替代方法?
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我猜他们正在使用 History API。通过监听 popstate,
您可以在允许做任何愚蠢的事情之前显示警告。
I would guess that they are using the History API. By listening to popstate
you can show a warning before allowing doing anything stupid.
使用
pagehide
事件 (参考)Use
pagehide
event (reference)