美文网首页
onbeforeunload页面离开/刷新事件

onbeforeunload页面离开/刷新事件

作者: 佛系码农 | 来源:发表于2018-03-29 11:22 被阅读0次

    chrome浏览器51之前的版本,允许页面离开的时候让开发者弹出自定义的提示信息,51版本(包括51)不允许弹出自定义的窗口。

    window.onbeforeunload = function(e) {

        e.returnValue = "A search is in progress, do you really want to stop the search and close the tab?";

        return "A search is in progress, do you really want to stop the search and close the tab?";

    }//无效

    相关文章

      网友评论

          本文标题:onbeforeunload页面离开/刷新事件

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