對于一些特殊頁面狱窘,如考試頁面淮韭,如果用戶點擊其它鏈接或關(guān)閉當(dāng)前窗口货葬,我們都希望給出提示采幌,讓用戶選擇是否確定要離開當(dāng)前頁面,腦海中可能已經(jīng)出現(xiàn)confirm了吧……
其實具體實現(xiàn)很簡單震桶,因為具體方法瀏覽器已經(jīng)為我們封裝好了:beforeunload | onbeforeunload event
<!DOCTYPE html>
<html>
<head>
<script>
function closeIt()
{
return "Any string value here forces a dialog box to \n" +
"appear before closing the window.";
}
window.onbeforeunload = closeIt;
</script>
</head>
<body>
<a >Click here to navigate to
www.microsoft.com</a>
</body>
</html>