您的位置:首页 > 其它

关闭浏览器窗口弹出警告

2007-05-27 17:25 330 查看
<html>
<head>
<script language="javascript">
window.onbeforeunload=function()
{
return "您确定关闭该窗口么?";
}
</script>
</head>
<body>
</body>
</html>

或者

<html>
<head>
<script>
function ClosePage()
{
return "你确定要离开当前页面吗?";
}
</script>
</head>
<body onbeforeunload="return ClosePage()">
</body>
</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐