参数如何起作用啊

来源:2-5 JavaScript-打开新窗口(window.open)

Roner

2016-04-18 10:57

<title>window.open</title>

<script type="text/javascript">

  function Wopen(){

    window.open('http://www.imooc.com','_blank','width = 600, height = 400, top = 100px, left = 0') 

    

  } 

</script>

</head>

<body>

    <input name="button" type="button" onClick="Wopen()" value="点击我,打开新窗口!" / >

</body>

</html>




代码如上,感觉没起作用

写回答 关注

3回答

  • web_harry
    2016-04-18 22:33:35

    更改为:window.open('http://www.imooc.com','_blank','width = 600, height = 400, top = 100, left = 0')

    改了top=100px

  • one丿pieceLJ
    2016-04-18 11:18:38

          window.open('http://www.imooc.com','_blank','width=600,height=400,top=100;,left=0');


  • 蒙奇D杰
    2016-04-18 11:08:34

      window.open('http://www.imooc.com','_blank','width = 600px, height = 400px, top = 100px, left = 0px') ;

JavaScript入门篇

JavaScript做为一名Web工程师的必备技术,本教程让您快速入门

739816 学习 · 9566 问题

查看课程

相似问题