confirm的一个问题
<html><head>
<script language="javascript">
function openwindow(){
window.status="...............................";
if(window.screen.width==1366&&window.screen.height==768)
window.open("dom1.html");
else
alert("请在我要求的分辨率下 进行 操作");
}
function closewindow(){
if(window.confirm("您真的要退出么?"))
window.close();
}
</script>
</head>
<body>
<form>
<table>
<tr>
<td><input name="num1" type="button" value="zaish" onClick="openwindow()"></td>
<td><input name="num2" type="button" value="zaishi" onClick="closewindow()"></td>
</tr>
</table>
</form>
</body>
</html>
这一段 当触法confirm的时候。弹出来下面这个
对话框
当confirm 为真的时候 点击确定以后 出来这个对话框
我怎样 才可以 实现党我点击第一个对话框的确定后 就直接关掉页面 而不是点完第一个确定后 又弹出个对话框 要在点一遍确定后 才关掉
为什么会这样。怎么解决这个问题?