<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>window.open</title>
<script type="text/javascript">
function Wopen(){
var window.open();
window.open('http://www.imooc.com','_blank','width=600px','height=400px','top=100px','left=0px';)
alert(Wopen());
}
</script>
</head>
<body>
<input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!" / >
</body>
</html>
同意楼上的 不用变量名 不要使用关键字 和保留字
有语法错误
var window.open(); 声明变量不要用这么容易混淆的名字
alert(Wopen()); 在自己的函数中调用自己 语法错误 这句得放函数外面