<!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 m=prompt("通过输入网址打开网页","http://www.baidu.com"); // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
window.open(m,'_blank','width=400','height=500','menubar=no','toolbar=no');
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
}
else
{alert("fail");}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
你的代码我复制粘贴到我的文档里,{var open=confirm("确定打开窗口吗?");这个分号是中文状态下输入的,我改正后就能运行了
错误:window.open(m,'_blank','width=400','height=500','menubar=no','toolbar=no');
改为:window.open(m,'_blank','width=400,height=500,menubar=no,toolbar=no');
var open=confirm("确定打开窗口吗?");这行代码删掉重新打一遍
var open=confirm("确定打开窗口吗?");// 新窗口打开时弹出确认框,是否打开
还有这里写的分号;是中文状态下的。
window.open(m,'_blank','width=400','height=500','menubar=no','toolbar=no');
应该改为 window.open(m,'_blank','width=400,height=500,menubar=no,toolbar=no');