由于浏览器不同及演示局限性,此节没有任务,大家可以拷贝代码,在本机上演示。
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title> 卸载事件 </title> <script type="text/javascript"> window.onunload = onunload_message; function onunload_message(){ alert("您确定离开该网页吗?"); } </script> </head> <body> 欢迎学习JavaScript。 </body> </html>