window.open("http://www.imooc.com",'width=600,height=400')我设置了他的宽高为什么显示的时候的屏幕尺寸 不对啊。。。。。。。。。。。 不是600和400而是全屏啊
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>window对象</title>
<script type="text/javascript">
function open()
{ alert("欢迎来到慕课网")
window.open("http://www.imooc.com",'_blank','width=600,height=400'); }
</script>
</head>
<body>
<form>
<input type="button" value="点击我,打开新窗口" onclick="open()" />
</form>
</body>
</html>
试了没用滴
要加个_blank属性。不写的话,默认是_self (在当前窗体打开)。是没办法改变窗体大小的。
window.open("http://www.imooc.com",'_blank','width=600,height=400');
你把 'width=600,height=400' 这段代码头上的单引号去了试试。
你看是不是设置了WINDOW_HEIGHT = document.body.clientHeight