復制代碼 代碼如下:
<!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>
雖然onbeforeunload這個事件已經Web標准被淘汰,但目前能實現這個效果的也就只有這個事件.還好浏覽器都能很好的支持.