<!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 chen=confirm("是否打开网址");
if(chen==true)
{
var wei=prompt("input url:","http://www.imooc.com/")
window.open('wei','_blank','width=400px,height=5oopx,menubar=no,toolbar=no')
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
另外还有两个问题,
1、默认网址http://www.imooc.com/不能是中文冒号
2、window.open的第一个参数因为是变量名所以不能打引号
函数名不对应,onclick="openWindow()" 和function openwindow()中w一个大写一个小写