其他分享
首页 > 其他分享> > 监测浏览器关闭进行提示

监测浏览器关闭进行提示

作者:互联网

window.onbeforeunload = function(e) {
  if (this.$store.getters.getModify) {
    return ((e || window.event).returnValue =
      "该操作将会导致非正常退出系统(正确退出系统方式:点击退出系统按钮),您是否确认?");
  }
};

 

标签:浏览器,returnValue,系统,window,关闭,退出,监测,event,store
来源: https://blog.csdn.net/weixin_41847321/article/details/102718425