JavaScript页面刷新问题

时间:2017-07-25 06:06:34

标签: javascript

有没有办法在JavaScript中处理页面刷新?单击浏览器关闭按钮后,我的应用程序应该被注销,单击浏览器后退按钮应用程序也应该注销。

2 个答案:

答案 0 :(得分:0)

在浏览器中单击“运行”并重新加载或向后搜索此片段。

window.onbeforeunload = function(e) {
  //call your function
  return "Attention Reload"
};

查看this eventHandler

答案 1 :(得分:0)

尝试此答案 This answer will help you out

此外,这仅显示如何访问跨浏览器中的后退按钮功能,但在这些功能的范围内, 您可以销毁您的令牌或注销的任何内容,或者您​​可以直接使用 window.location.href Window.location.href

中提供相同的描述

希望有所帮助,如果这不能解决,请指出有关您如何退出的更多详细信息,

谢谢&此致

Shohil Sethia