大神们帮忙看下问题出在哪了,primept不运行
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function openWindow(){
var mywin=confirm("是否打开一个新窗口")
if (mywin==ture){
var web=prompt("请输入你要打开的网址","http://www.imooc.com")
if web==null{
web.open("_blank","width:400px","heigh:500px","menubar=no","toolbar=no"
}
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>