美文网首页
onbeforeunload和onunload的使用方式

onbeforeunload和onunload的使用方式

作者: 雨季雨线 | 来源:发表于2021-02-04 16:48 被阅读0次

    里面写alert是不会有效果的,页面已经销毁了,也就没法执行alert了。

    onbeforeunload

    window.onbeforeunload = (event) => {
      return ''
    }
    window.onbeforeunload = (event) => {
      event.returnValue = false;
    }
    

    onunload

    
    

    连续刷新只有一次会弹框

    相关文章

      网友评论

          本文标题:onbeforeunload和onunload的使用方式

          本文链接:https://www.haomeiwen.com/subject/xoibtltx.html