捕获关闭窗口的脚本
时间:2020-10-23 13:19:15|栏目:JavaScript代码|点击: 次
<html>
<body>
<script>
function LeaveWin(){
event.returnValue="call,确定要关闭吗";
}
window.onbeforeunload=LeaveWin;
</script>
</body>
</html>
<body>
<script>
function LeaveWin(){
event.returnValue="call,确定要关闭吗";
}
window.onbeforeunload=LeaveWin;
</script>
</body>
</html>
上一篇:JavaScript数据结构与算法之二叉树实现查找最小值、最大值、给定值算法示例
栏 目:JavaScript代码
下一篇:JS实现字符串转驼峰格式的方法
本文标题:捕获关闭窗口的脚本
本文地址:http://www.codeinn.net/misctech/14977.html