anthony_min
2016-10-11 10:14
<!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("通过对话框输入网址","www.baidu.com");
if(url!=null)
{window.open(url,'_blank','width=400px','height=500px','menubar=no','toolbar=no')}
else
{alert("再见!");}
}
else{alert("再见!");}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
<!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("通过对话框输入网址","www.baidu.com");
var url=prompt("通过对话框输入网址","http://www.baidu.com");
if(url!=null)
{
// window.open(url,'_blank','width=400px','height=500px','menubar=no','toolbar=no')
window.open(url,'_blank','width=400,height=500,meaubar=no,toolbar=no');
}
else
{
alert("再见!");
}
}
else
{
alert("再见!");
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
帮你改了一下,改的地方作了注释,除此之外,你的两个alert语句都是以中文分号结尾的,不对。现在在网页里可以正常运行了
{alert("再见!");}
}
else{alert("再见!");}
这两个你用了中文的分号
alert最后的分号是中文的,应该用英文的。
JavaScript入门篇
739816 学习 · 9566 问题
相似问题
回答 2
回答 1
回答 2
回答 2
回答 3