诸位帮我看看哪里错了,为什么prompt语句不显示?
<!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 opentag=confirm("哥哥,打开一个新窗口嘛好不好?");
if(opentag==ture)
{var webaddress=prompt("输入一下这个网址嘛好不好?","http://www.imooc.com");
if(webaddress!=null)
{window.open('http://www.imooc.com','_blank','width=400, height=500, menubar=no, toolbar=no, scrollbars=yes');}
else{
alert("你是不是故意的?");
alert("哼,再不喜欢你了!");
}}
else
{
alert("你为什么不打开新窗口?");
alert("哼,再不喜欢你了!");
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>