问答详情
源自:2-5 JavaScript-打开新窗口(window.open)

window.open()本地不能成功使用

<!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>


提问者:修炼狂人 2016-07-21 16:38

个回答

  • LL_1024
    2016-07-21 16:54:12
    已采纳

    window.open函数的三个参数之间要使用英文逗号隔开

  • 侧耳听
    2016-07-21 17:05:57

    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");

  • 慕粉3671728
    2016-07-21 17:03:15

      function wopen(){

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

             }

    wopen(); //最后还要调用一下,然后就可以了,这是正确版本,首先你网址少两斜杠,其次逗号没分开,最后再调用一下函数,就可以了


  • 慕粉3695498
    2016-07-21 16:58:24

     function Wopen(){

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


      } 

    中间加逗号,望采纳

  • 爱学习的好孩子AAA
    2016-07-21 16:56:41

    楼上说得对,还有网址打错了,应该是http://www.imooc.com吧