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

大神们帮忙看下问题出在哪了,primept不运行

<!DOCTYPE html>

<html>

 <head>

  <title> new document </title>  

  <meta http-equiv="Content-Type" content="text/html; charset=gbk"/>   

  <script type="text/javascript">

  function openWindow(){

      var mywin=confirm("是否打开一个新窗口")

      if (mywin==ture){

      var web=prompt("请输入你要打开的网址","http://www.imooc.com")

      if web==null{

          web.open("_blank","width:400px","heigh:500px","menubar=no","toolbar=no"

      }

      }

  }

    

    

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


提问者:虔诚之歌 2016-01-26 11:30

个回答

  • lprainbow
    2016-01-26 16:39:25

    if语句有问题,打开窗口的命令window.open();

  • 茹宝
    2016-01-26 14:10:25

    正确代码如下:
    <!DOCTYPE html>
    <html>
        <head>
            <title> new document </title>  
            <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> 
    
    
            <script type="text/javascript">
            function openWindow(){
                var mywin = confirm("是否打开一个新窗口");
                if (mywin==true){
                    var web=prompt("请输入你要打开的网址","http://www.imooc.com");
                    if (web != null){
                        window.open(web,"_blank","width=400px,heigh=500,menubar=no,toolbar=no");
                    }
                }
            }
            </script> 
        </head> 
    
        <body> 
            <input type="button" value="新窗口打开网站" onclick="openWindow()" /> 
        </body>
    </html>


  • 欧阳小罗
    2016-01-26 13:50:35

    if(web!=null){

    }

  • 我没华仔帅
    2016-01-26 12:43:08

    if web==null{  // 是不是应该改成

    if web!=null{