为了账号安全,请及时绑定邮箱和手机立即绑定

打开窗口和关闭窗口为什么button按钮没反应啊!

<!DOCTYPE html>

<html>

<head>

    <meta charset="UTF-8">

    <title>Document</title>

    <script type="text/javascript">

        function wopen(){

             var window=prompt("http://www.imooc.com");

             if(window!=null){

                     window.open('http://www.imooc.com','_blank',width=400px,height=500px,menubar=no,toolbar=no);

             }else{

                alert("结束");

             }

        }


  </script>

 </head>

 <body>

      <input type="button" value="新窗口打开网站" onclick="wopen()" />

 </body>

</html>


正在回答

3 回答

变量不能与js方法名相同, prompt("http://www.imooc.com"); 多余

0 回复 有任何疑惑可以回复我~

两处错误

  1. var window=prompt("http://www.imooc.com"); //变量不能与js方法名相同,可以命名为_window ,_w1,_w2,...;

  2.   window.open('http://www.imooc.com','_blank',width=400px,height=500px,menubar=no,toolbar=no); //需要给 width=400px,height=500px,menubar=no,toolbar=no 添加引号 ' ' 或 " " , 统一用单引号或双引号。

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

打开窗口和关闭窗口为什么button按钮没反应啊!

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信