<!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("确认新建窗口?");
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
if(open==true)
{var url=prompt("请输入网址","http://www.imooc.com/");
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
window.open(url,"_top","width=400,height=500,menuber=no,toolber=no");}
}else{
alert("退出");
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
跟你的对比一下就知道问题了,不过我觉得刚开始学习还是用一个有代码错误检测的编辑器吧
else前面的大括号放到 </script> 前面
<html>
<head>
<title> new document </title>
<script type="text/javascript">
function openWindow(){
if(confirm("确认新建窗口?"))
{
window.open(url,"_top","width=400,height=500,menuber=no,toolber=no");
}else{
alert("退出");
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
window.open语句里面用的是单引号 而且每个属性是分开的像这样写window.open('http://www.imooc.com','_blank','width=600,height=400,top=100,left=0');