问答详情
源自:6-10 卸载事件(onunload)

Chrome浏览器,刚进入或者刷新的时候才有提示,关闭的时候没有提示了?

<!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>


提问者:shane12 2020-02-02 14:09

个回答

  • 朦胧5
    2020-02-19 16:39:36
    已采纳

    <script type="text/javascript">      

          window.onbeforeunload = onbeforeunload_handler;    

         function onbeforeunload_handler(){  

             var warning="";          

             return warning;  

         }   

     </script>  


  • qq_慕少8309659
    2020-06-03 09:32:37

    调用函数要添加(),window.onbeforeunload = onunload_message()

  • 朦胧5
    2020-02-19 16:38:47

    经过多次尝试,onunload打开页面和关闭页面都没有任何提示,建议使用onbeforeunload