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

为什么窗口不显示呢

<script type="text/javascript">

  function Wopen(){

       var Wopen=confirm("你确定要打开?")

    if (Wopen==true);

    {

    window.open('http://www.imooc.com','_blank','width=600,height=400,menubar=yes,toolbar=yes, status=yes,scrollbars=yes');

    }

    else

    {

        alert("打开失败!");

    }

  }      


  } 

</script>

</head>

<body>

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


提问者:林晓白 2015-07-02 11:55

个回答

  • E网飙风
    2015-07-06 22:05:48

    我也试过了,可以打开

  • 林晓白
    2015-07-06 15:29:29

    你可以打开?为什么我不能打开呢!这是什么问题

  • Perona
    2015-07-02 12:18:03

    复制你的代码运行,打得开窗口~~~