js判断用户关闭页面或浏览器

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>判断用户关闭页面或浏览器</title>
</head>
<body>
<script type="text/javascript">
// 在离开之前写入代码
window.onbeforeunload = function() {return '您确定要离开吗?';};
</script>
</body>

</html>

上一篇:阅读《RobHess的SIFT源码分析:综述》笔记2


下一篇:【CSS3】盒模型