<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>学习JS测试</title>
<script type="text/javascript">
function wopen(){
window.open('http:www.imooc.com' '_blank' 'width=600px,height=400px,top=100px,left=0')
}
</script>
</head>
<body>
<input name="button" type="button" onClick="wopen()" value="测试">
</body>
</html>
window.open函数的三个参数之间要使用英文逗号隔开
window.open('http:www.imooc.com' '_blank' 'width=600px,height=400px,top=100px,left=0')
这里写错了,没用逗号隔开。。
window.open("http://www.imooc.com","_blank()","width=600px,height=400px,top=100px,left=0");
function wopen(){
window.open('http://www.imooc.com' ,'_blank' ,'width=600px,height=400px,top=100px,left=0')
}
wopen(); //最后还要调用一下,然后就可以了,这是正确版本,首先你网址少两斜杠,其次逗号没分开,最后再调用一下函数,就可以了
function Wopen(){
window.open('http://www.imooc.com','_blank','width=600,height=400,top=100,left=0')
}
中间加逗号,望采纳
楼上说得对,还有网址打错了,应该是http://www.imooc.com吧