我的点击没反应 已经检查了 符号都是英文状态下输入的 请大神帮忙
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function openWindow()
{
var ciwang = confirm("是否打开");
if(ciwang==true)
{
var url=prompt("打开的网址为","www.imooc.com") ;
}
if(url!=null)
{
window.open(url,'width=400px,height=500px');
}
else
{
document.write("hahaha");
}
else
{
document.write("hahaha1");
}
}
</script>
</head>