问答详情
源自:8-1 window对象

任务中窗口宽高的设置中为什么width和heigth之间加逗号和不加逗号打开的窗口大小不一样

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>window对象</title>
<script type="text/javascript">
alert("欢迎来到慕课网!")
function myFunction()
{
    window.open('http://www.imooc.com','_blank','width=600, height=400')
  //  window.open('http://www.imooc.com','_blank','width=600 height=400')
}
</script>
</head>
<body>
<form>
<input type="button" value="点击我,打开新窗口" onclick="myFunction()" />
</form>
</body>
</html>

提问者:四月是你的谎言x 2017-11-08 15:02

个回答

  • 慕勒7123956
    2017-11-08 16:56:15
    已采纳

    我刚才试了一下,在我的环境下是同样显示的,可能是不同浏览器对错误语法处理的不一样吧

  • VictorChan
    2018-05-03 20:55:07

    嗯,谢谢

  • 慕神0337640
    2018-01-11 10:40:05

    想问下'_blank'这个是什么意思?

  • 西伯利亚没春天
    2017-11-08 17:04:51

    在我电脑上效果也是一样的,你换一个浏览器试试