打不开新网址
输入网址后点击确认没有反应 为什么呢?谢谢大家
<!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 message=confirm("确定打开新网页吗?");
if (message==true){
var url0=prompt("请输入网址","http://www.imooc.com");
if(url0!=""){
window.open("url0","_blank","height=500,width=400,menubar=no,toolbar=no");}
else(){
alert("再见!");}}
else(){
alert("再见!");}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>