关闭浏览器或者刷新浏览器弹窗提示,可以取消或者确认。

添加如下js代码即可


    
        
    
    
        刷新或者关闭窗口触发事件
        
        
    

vue中使用

  mounted () {
    window.isCloseHint = true
    // 初始化关闭
    window.addEventListener('beforeunload', function (e) {
      if (window.isCloseHint) {
        let confirmationMessage = '您确定要关闭窗口吗,如果关闭窗口下载会停止!';
        (e || window.event).returnValue = confirmationMessage
        return confirmationMessage
      }
    })
  },

你可能感兴趣的:(javascript)