检查页面刷新是否触发了window.onbeforeunload?
我有一个这样的函数来提示用户确认他们想要离开该页面:
window.onbeforeunload = function() {
return "You may lose any unsaved changes.";
};
现在我想检查这是否只是页面刷新(F5),并且在这种情况下不渲染消息。这可能吗?
谢谢
I have a function like this to prompt the user to confirm they want to navigate away from the page:
window.onbeforeunload = function() {
return "You may lose any unsaved changes.";
};
Now I'd like to check whether this is a just a page refresh (F5), and not render the message in this case. Is this possible?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,这是不可能的,没有办法知道是否按下了浏览器的刷新按钮。
Nope, that's not possible, there is no way to find out if the refresh button of browser was pressed.