ウィンドウを閉じる前にデータを保存するようにユーザーに依頼する


window.onbeforeunload = function (e) {
   // return a string if you don't want to close
   // the returned string will be displayed in the browser
   return "Do not close please!";

  // return undefined to close the TAB
  return;
};