为什么用本地浏览器关闭页面时没有提醒确定离开

来源:6-10 卸载事件(onunload)

慕粉4296528

2016-11-22 16:45

<!DOCTYPE html>
<html>
<meta charset="utf-8">
<head>
<style type="text/css">
div#con1{height:200px;width:300px;background-color: #eee8aa;margin-left: 25%;margin-top:5%;}
div#con2{height:400px;width:600px;background-color: #eee8aa;margin-left:25%;margin-top:5%;}

body{background:url("img/fp.jpg");background-size: cover;}
</style>
<script type="text/javascript">  
  window.onbeforeunload = unloadMessage;
         function unloadMessage(){

        return "确定关闭吗?";

}
</script>
</head>

<body>
<p align=center><font size=15px color= #eee8aa><i>欢迎访问,请先登录!!!<i></font></p>

<div id=con2>
<table border="0" bgcolor=black height=60px width=600px>
<tr>
<td><font size=6 color=#ffffff>请登录:</font>
</td>
</tr>
</table><br><br><br>

<div id=con1>
<form>
用户名:
<input type="text"  name="user" style="width:200px;height:30px">
<br><br>
&nbsp;&nbsp;&nbsp;密码:
<input type="password" name="passsword"style="width:200px;height:30px">
<p>
<font size=2 color=red><a href="zhuce.html" target="_blank" style="text-decoration:none">  没有账号?请注册</a></font></p>
<a href="g.html" target="_blank" style="text-decoration:none"><button type="button" >登录</button></a>
<a href="zhuce.html" target="_blank" style="text-decoration:none"> <button type="button" margin-left=50px>注册</button></a>
<a href="g.html" target="_blank" style="text-decoration:none">  <button type="button"style="width:100px;height:30px" >返回主页</button></a>
</div>

</div>

</html>

写回答 关注

1回答

  • 精慕门3843252
    2016-11-22 19:26:22

    浏览器的问题,你可以用IE浏览器试试

    AaronW...

    ie也没反应

    2016-11-26 11:15:20

    共 1 条回复 >

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468061 学习 · 21891 问题

查看课程

相似问题