修仙不如狗带
2016-04-16 23:07
<!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==ture)
{var url=prompt("确认打开的网址"," http://www.imooc.com");
if(url!=null)
{window.open(url,"_blank",'width=400,height=500,menubar=no,toolbar=no');}
else
{alert("再见!");}
}
else
{alert("再见!");}
}
// 新窗口打开时弹出确认框,是否打开
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
1、var url=prompt("确认打开的网址"," http://www.imooc.com" 逗号
2、 if(open==ture) true
if(open==ture)改为if(open==true)
第九行代码 你将true写错成ture了;还有第10行代码,你两个参数中间的逗号使用了中文的逗号,以及网址里面的冒号也是使用的中文的冒号,都改成英文的就好了,在我的电脑上执行是这样的。
第一个if判断语句的 true 拼错了
JavaScript入门篇
739817 学习 · 9566 问题
相似问题