问答详情
源自:2-7 编程练习

哪里错了呢

<script type="text/javascript"> 
    function openwindow(){
     var yaolan=confirm("是否打开网页");
     if (yaolan=="ture")
     {
            var liuwenlong=prompt("请输入网址");
              if(liuwenlong=="http://www.imooc.com")
              {
                 window.open('http://www.imooc.com','_block','width=400px,height=500px,');
                }
              else
              {
                 alert("输入网址有误");
              }
     }
     else{
        document.write("你取消了打开网页");
     }  
    }
   
   
  </script>
 </head>
 <body>
   <input type="button" value="新窗口打开网站" onclick="openWindow()" />
 </body>

提问者:慕容4987451 2017-01-11 15:46

个回答

  • alex_lcl
    2017-01-11 15:52:32
    已采纳

    onclick="openWindow()"  

     function openwindow(){

    大小写的问题吧

  • ezreal123
    2017-01-11 16:12:12

     if (yaolan=="ture"),是true,拼错了!