请看下有什么问题?点击了按钮后,没有提示框出现。
<!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 open=confirm("确定打开新窗口?")
if(open==true)
{
var url=prompt("输入网址:","http://www.imooc.com")
if(url!=null)
{window.open(url,'_blank')}
else {alert("8888")}
}
else
{alert("再见")}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>