打开新窗口我遇到了如下几个问题:
①、窗口名称中“_blank”设置的长度和宽度没有作用,因为无论 我怎么改,都一直是满屏?
②、长度、宽度等要求的单位时像素,为什么我写不写px都没影响?
③、“_top”的作用效果竟然和“_blank”一眼,求解?
三个参数左右都加单引号 window.open('http://www.imooc.com','_blank','width=600,height=400,top=100,left=0');
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>window.open</title>
<script type="text/javascript">
function window.open(
"http://www.baidu.com","_blank","width=600px,height=400px,menubar=yes,toolbar=yes,top=100px,left=0"
)
</script>
</head>
<body>
<input name="button" type="button" onClick="window.open()" value="点击我,打开新窗口!" / >
</body>
</html>
上面那位帅哥乱说的,你吧代码贴出来看看
_blank意思是在当前窗口显示
_top是在新窗口显示