为什么我这个出不来效果?
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function top(){
var top1=confirm("确定打开网站吗?");
if(top1==ture)
{var top2=prompt("打开的网站对吗?","http://www.imooc.com/");
if(top2==true)
{window.open('top2','_blank','width=400,height=500,menubar=no,toolbar=no,scrollbars=yes,status=yes');}
else
{alert("那么退出");}
}
else{alert("现在进不去了");}
}
// 新窗口打开时弹出确认框,是否打开
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
</script>
</head>
<body>
<form>
<input type="button" value="打开窗口按钮" onclick="top()">
</form>
</body>
</html>