为什么我的代码出不了效果,是模似网页显示不出来吗?
<!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(){
window.open('http//www.imooc.com,''_blank','height=600,width=400,top:100,left=0');
}
</script>
</head>
<body>
<input name="button" type="button" onClick="Wopen(function)" value="点击我,打开新窗口!" / >
</body>
</html>
这代码怎么只出现一个按扭,而没有对应效果出现,我的 window.open('http//www.imooc.com,''_blank','height=600,width=400,top:100,left=0');这个代码错了吗?