请问怎么改呢 不会
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type"content="text/html;charset=gbk">
<title>new document</title>
<script type="text/javascript">
function openWindow()
{
var open=confirm("确认新建窗口打开网站吗?");
if(open==true)
//新窗口打开时弹出对话框,是否打开
{
var url=prompt("通过输入对话框,确定打开的网址","http://baidu.com");
if(url!=null)
//通过输入对话框,确定打开的网址,默认为http://baidu.com、
{
window.open(url,"_blank",'width=400px,height=500px,menubar=no,toolbar=no');
}
//打开的窗口要求
else{alert("再见!");
}
else
{
alert("再见!");
}
}
</head>
<body>
<input type="button"value="新窗口打开网站"onClick="openWindow()"/>
</body>
</html>