Onunload,onbeforeunload作用,呼叫時機
Onbeforeunload也是在Onunload,onbeforeunload或關閉時呼叫,Onbeforeunload是正要去伺服器讀取新的頁面時呼叫,此時還沒開始讀取;而onunload則已經從伺服器上讀到了需要載入的新的頁面,在即將替換掉當前頁面時呼叫。Onunload是無法阻止頁面的更新和關閉的。而 Onbeforeunload 可以做到。
1、onbeforeunload事件:
說明:目前三大主流瀏覽器中firefox和IE都支援onbeforeunload事件,opera尚未支援。
用法:
·object.onbeforeunload = handler
·<element onbeforeunload = “handler” … ></element>
描述:
事件觸發的時候彈出一個有確定和取消的對話方塊,確定則離開頁面,取消則繼續待在本頁。handler可以設一個返回值作為該對話方塊的顯示文字。
觸發於:
·關閉瀏覽器視窗
·通過位址列或收藏夾前往其他頁面的時候
·點選返回,前進,重新整理,主頁其中一個的時候
·點選 一個前往其他頁面的url連線的時候
·呼叫以下任意一個事件的時候:click,document write,document open,document close,window close ,window navigate ,window NavigateAndFind,location replace,location reload,form submit.
·當用window open開啟一個頁面,並把本頁的window的名字傳給要開啟的頁面的時候。
·重新賦予location.href的值的時候。
·通過input type=”submit”按鈕提交一個具有指定action的表單的時候。
可以用在以下元素:
·BODY, FRAMESET, window
平臺支援:
IE4+/Win, Mozilla 1.7a+, Netscape 7.2+, Firefox0.9+
示例:
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=gb2312″ />
<title>onbeforeunload測試</title>
<script>
function checkLeave(){
event.returnValue=”確定離開當前頁面嗎?”;
}
</script>
</head>
<body onbeforeunload=”checkLeave()”>
</body>
</html>
示例2:
window.onbeforeunload = function() {
if(已經輸入不少內容了){
return "確認要離開此頁面嗎?";
}
};
2、onunload事件
用法:
·object.onbeforeunload = handler
·<element onbeforeunload = “handler”></element>
描述:
當用戶關閉一個頁面時觸發 onunload 事件。
觸發於:
·關閉瀏覽器視窗
·通過位址列或收藏夾前往其他頁面的時候
·點選返回,前進,重新整理,主頁其中一個的時候
·點選 一個前往其他頁面的url連線的時候
·呼叫以下任意一個事件的時候:click,document write,document open,document close,window close ,window navigate ,window NavigateAndFind,location replace,location reload,form submit.
·當用window open開啟一個頁面,並把本頁的window的名字傳給要開啟的頁面的時候。
·重新賦予location.href的值的時候。
·通過input type=”submit”按鈕提交一個具有指定action的表單的時候。
示例:
<html xmlns=http://www.w3.org/1999/xhtml>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=gb2312″ />
<title>onunload測試</title>
<script>
function checkLeave(){
alert(”歡迎下次再來!”);
}
</script>
</head>
<body onunload=”checkLeave()”>
</body>
</html>