关闭窗口的好方法

<html>
<head>
<script>
function closeWindow(){
if(window.confirm("是否要退出本系统","退出")){
window.opener=null;
window.close();
}
}
</script>
</head>
<body>
<p>系统测试</p>
<p>
<button onclick="javascript:closeWindow();">关闭</button>
</p>
</body>
</html>

 如果你的页面是包含在框架中,则在function closeWindow()函数中写法如下:

if(window.confirm("是否要退出本系统","退出")){
parent.window.opener=null;
parent.window.close();

你可能感兴趣的:(JavaScript,html,框架,function,null,button)