如何避免不小心关掉web浏览器窗口

如何避免不小心关掉web浏览器窗口
<script language="javascript">
  g_blnCheckUnload = true;
  function RunOnBeforeUnload() {
     if (g_blnCheckUnload) {window.event.returnValue = 'You will lose any unsaved content';  
     } 
  }
</script>
<body  onbeforeunload="RunOnBeforeUnload()">
</body>

你可能感兴趣的:(如何避免不小心关掉web浏览器窗口)