阻止或警告关闭IE/Firefox浏览器
下面的适合IE和Firefox,在用户关闭浏览器时弹出警告对话框,在刷新时同样触发:
<script type="text/javascript">//<![CDATA[
window.onbeforeunload = function(e){
return 'leave or stay';
}
window.onunload = function(){
//alert('onunload');
}
//]]></script>