asp.net关闭浏览器时跳个提示框
系统后台还做登出记录,点击安全退出有记录,直接关浏览器的不知道怎么做了。怎么在关闭浏览器时跳个提示框,再写记录?...
系统后台还做登出记录,点击安全退出有记录,直接关浏览器的不知道怎么做了。怎么在关闭浏览器时跳个提示框,再写记录?
展开
2个回答
展开全部
Onbeforeunload也是在页面刷新或关闭时调用,Onbeforeunload是正要去服务器读 取新的页面时调用
onbeforeunload事件:
说明:目前三大主流浏览器中firefox和IE都支持onbeforeunload事件,opera尚未支持。案例如下:
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>onbeforeunload测试</title>
<script>
function checkLeave(){
event.returnValue="确定离开当前页面吗?";
}
</script>
</head>
<body onbeforeunload="checkLeave()">
</body>
</html>希望能帮到你!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询