JS防止重新整理,後退,關閉

燕兒歸發表於2015-09-25

常常會用到的停留頁面的操作.相容IE,FF.程式碼如下:

 

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html><head>
<title> New Document </title>
</head>
<script language="javascript">
function RunOnBeforeUnload() {window.onbeforeunload = function(){ return '將丟失未儲存的資料!'; } }
</script>
<body onload="RunOnBeforeUnload()">
重新整理,關閉,後退,F5 測試
</body>
</html>

測試結果:

IE6.0,FireFox,Chrome通過

相關文章