Javascript register window/tab closing event before window/tab close

前端 未结 4 1718
醉话见心
醉话见心 2020-12-09 05:33

This has / may have been asked before, but, as far as I remember, the question was not satisfactory answered at that time ^^

How can I register a window or tab closi

4条回答
  •  悲&欢浪女
    2020-12-09 06:04

    window.onbeforeunload = function (e) {
      var e = e || window.event;
    
      // For IE and Firefox
      if (e) {
        e.returnValue = 'Any string';
      }
    
      // For Safari
      return 'Any string';
    };
    

提交回复
热议问题