Window.onbeforeunload .alert限制刷新按钮点击

window.onbeforeunload....alert to restrict when refresh button click?

本文关键字:按钮 刷新 onbeforeunload alert Window      更新时间:2023-09-26

我有一个安全问题,当用户在注销前离开'关闭窗口时,我想显示一个警告消息。

所以我这样做了:

window.onbeforeunload   = function(){  return " confirm msg";}

我得到了警报,但现在的问题是,如果我点击刷新按钮,默认操作是运行没有警告消息。

我得到了键盘的答案,而不是鼠标点击的答案。有人能帮我吗?如何检测用户何时单击刷新按钮?

不幸的是,您无法判断onbeforeunload事件是由刷新、关闭等触发的。