为什么跳不到alert("再见")?
为什么跳不到alert("再见")?
为什么跳不到alert("再见")?
2018-08-28
这是我调试后的代码,你看看
<!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 str=confirm("确认打开新网页吗?");
if(str==true){
var ok=prompt("请输入网址","http://wWw.imooc.com/");
if(ok!=null){
window.open(ok,"_blank","width:400px,height:500px,menubar=no,toolbar=no")
}else{
alert("网址不存在");
}
}else{
alert("再见");
}
}
</script>
</head>
<body>
<input type="button" value= "新窗口打开网站" onclick="openWindow()"/>
</body>
</html>
举报