在火狐浏览器,调用onbeforeunload时间,必须点一下页面的空白处,或者对页面操作一下,才会触发onbeforeunload。否则直接点击关闭浏览器或者刷新都不触发。哪位大神知道什么问题吗?或者给点解决办法

解决方案 »

  1.   

    window.onbeforeunload=function(){
    return "Please confirm whether to close the page. If not saved, please click cancel to save.";
    }
      

  2.   

    firefox48表示关闭标签页,浏览器都会提示是否离开页面。。Web开发学习资料推荐
    easyui开发技巧
    javascipt修改css级联样式表类和伪类样式
      

  3.   

    window.onbeforeunload=function(){
          return 1;
    }
    我目前火狐浏览器版本为58,刚进入页面直接点击关闭,不触发。而点击一下其它地方,或者对页面操作一下,再次点击关闭,就会触发。