window对象 为什么我这个没出来效果啊??
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>window对象</title>
<script type="text/javascript">
alert("欢迎大家来我家玩");
function wow(){
window.open(http://www.imooc.com,width=400px,height=300px);
}
</script>
</head>
<body>
<form>
<input type="button" onClick="wow()" value="点击我,打开新窗口" />
</form>
</body>
</html>