码迷,mamicode.com
首页 > Web开发 > 详细

JS判断是否离开当前页面

时间:2015-02-11 10:40:12      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:

关闭页面的时候弹出提示框

 

<!doctype html> 
<html> 
<head> 
<meta charset="UTF-8"> 

<title>Leave Page</title> 
<script type="text/javascript"> 
window.onbeforeunload = function() 
{  
	return "Leave this page?"; 
} 
</script> 
</head> 
<body> 
Contents...
</body> 
</html> 

  

JS判断是否离开当前页面

标签:

原文地址:http://www.cnblogs.com/batter152/p/4285419.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!