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

js页面关闭或者刷新的判断

时间:2015-11-16 12:42:15      阅读:124      评论:0      收藏:0      [点我收藏+]

标签:

<HTML> 
<HEAD> 
<title>页面刷新</title> 
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta http-equiv="content-type" content="text/html;charset=utf-8">
</HEAD> 
<body onbeforeunload="RunOnBeforeUnload()" onunload="RunOnUnload()"> 
	<?php echo time(); ?>
	<script language="javascript"> 
		function RunOnBeforeUnload() { 
			window.event.returnValue = ‘关闭浏览器将退出系统.‘; 
		} 
		function RunOnUnload() { 
			//执行你的代码 
			alert("我要做我的是事情!");
		} 
	</script> 
</body> 
</HTML>


js页面关闭或者刷新的判断

标签:

原文地址:http://my.oschina.net/cmliangchu/blog/530782

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