为了账号安全,请及时绑定邮箱和手机立即绑定

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>


正在回答

3 回答

<script type="text/javascript">      

      window.onbeforeunload = onbeforeunload_handler;    

     function onbeforeunload_handler(){  

         var warning="";          

         return warning;  

     }   

 </script>  


0 回复 有任何疑惑可以回复我~

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

0 回复 有任何疑惑可以回复我~

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

1 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

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

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信