JS监听浏览器窗口关闭

来源:互联网 发布:格雷福斯泳池派对淘宝 编辑:程序博客网 时间:2024/05/16 07:21
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html> <head>  <title> New Document </title>  <meta name="Generator" content="EditPlus">  <meta name="Author" content="">  <meta name="Keywords" content="">  <meta name="Description" content=""> </head>   <body>  <script type="text/javascript">  window.onbeforeunload = onbeforeunload_handler;           function onbeforeunload_handler(){           var warning="确认关闭www.someabcd.com?";               //你的业务操作。。。。              return warning;       }              </script> </body></html>

0 0
原创粉丝点击