如何捕获浏览器选项卡的关闭

Sam*_*Sam 0 javascript

我们想在用户关闭浏览器之前抛出特定的消息.是否有一种机制适用于所有主流浏览器(如IE,Firefox,Chrome,Opera)

ken*_*ytm 5

检查onbeforeunload:

window.onbeforeunload = function (e) {
  var e = e || window.event;

  if (has_message_to_throw) {

    // For IE and Firefox
    if (e) {
      e.returnValue = 'Specific message';
    }

    // For Safari
    return 'Specific message';

  }


};
Run Code Online (Sandbox Code Playgroud)