關閉網頁時,想同時讓頁面執行一個點擊退出的按鍵的功能,要如何做?
如果點擊彈出頁面左上角的X 鍵,將它關閉時,想同時讓頁面執行一個點擊退出的按鍵的功能。
即想做成如:
有一退出鍵:<input type="button" name="exit" onclick="javascript:return myfunciton();"/>
然而,想讓用戶在點 X退出而不是點按鍵退出時,都執行myfunction(),在網頁的代碼中要如何寫?多謝!
<html>
<head>
<script language="vbscript">
function myclose()
dim msgvar
msgvar=msgbox("你真的要关闭吗?",vbokcancel+vbinformation+vbdedaulftbutton,"标题")
if msgvar=1 then
return true
else
return false
end if
end function
</script>
</head>
<body onbeforeunload="vbscript:return myclose()">
</body>
</html>