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

求助为什么点击没反应

 <script type="text/javascript">  

   function rec()

   {

       var website=confirm("是否打开www.immoc.com);

       if (thewebsite==ture),

       {

           window,open('www.immoc.com','_blank',width=400,height=500,top=no,toolbar=no);

       }

           else

           {

               window,close();

           }

   };

    

  </script> 


正在回答

2 回答

  1. if (thewebsite==ture), 多了the和一个逗号,去掉,true不是ture。

  2.  window,open 和 window,close() 中间是.点,不是逗号

  3. width=400,height=500,top=no,toolbar=no  这个参数字符串也需要加单引号

  4. ("是否打开www.immoc.com)缺一个结束的双引号

修改完重新提交就好了?

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

function rec()

{

    var website=confirm("是否打开www.immoc.com");

    if (website==true)

    {

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

    }

    else

    {

        window.close();

    }

}

</script>

</head> 

<body> 

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

 </body>

</html>

应该是标点符号不全,还有单词打错了:"true"不是"ture",var websit,下面是thewebsit

如果不跳转就换到html编辑软件中运行

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

举报

0/150
提交
取消

求助为什么点击没反应

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