检测页面关闭事件(类似WebQQ 关闭页面提示)

当关闭浏览器或标签页时执行onbeforeunload方法,此方法适应于大多数浏览器。

<script type="text/javascript">
window.onbeforeunload = function() {
	//Do Sth...
	return 'MSG';//返回值 Number/Boolean/Object/String
};
</script>

 检测页面关闭事件(类似WebQQ 关闭页面提示)

详细说明参考:http://w3help.org/zh-cn/causes/BX2047

你可能感兴趣的:(onbeforeunload,webqq,关闭页面)