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

求解,真的看不出哪错了

<!DOCTYPE html>

<html>

 <head>

  <title> new document </title>  

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

  <script type="text/javascript">  

function openWindow(){    

    // 新窗口打开时弹出确认框,是否打开


    // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/


    //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。

   

var message=confirm("是否需要打开网页?");

if(message==true){

var site=prompt("请输入网址:"," http://www.imooc.com/");

if(site!=null){ 

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

  }else{  alert("打开失败");  }

    

}

else{alert("不需要打开网页");}


}

openWindow();

</script> 

 </head> 

 <body> 

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

 </body>

</html>


提问者:瞅瞅啥 2018-09-18 19:53

个回答

  • qq_叫你卟听话丶_0
    2018-09-19 15:03:28
    已采纳

    window.open('http://www.imooc.com/','_blank','width=400,height=500,menubar=no,toolbar=no')这里的冒号

  • 穿秋裤的天秤
    2018-09-27 23:32:02

    不应该是这样吗?难道是我写错了?

    <!DOCTYPE html>
    <html>
     <head>
      <title> new document </title>  
      <meta http-equiv="Content-Type" content="text/html; charset=gbk"/>   
      <script type="text/javascript">  
        
        // 新窗口打开时弹出确认框,是否打开

        // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/

        //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
        function add(){
            var add=confirm("是否打开?")
            if(add==true)
            {
            window.open('http://www.imooc.com','_blank','width=400,height=500,left=0,menubar=no,toolbar=no,status=no,scrollbars=yes');
            }
        }
      </script>
     </head>
     <body>
          <input type="button" value="新窗口打开网站" onclick="add()" />
     </body>
    </html>

  • 青郓
    2018-09-19 17:38:17

    两个:http后面的是中文冒号,toolbar的no后面少一个单引号

  • qq_叫你卟听话丶_0
    2018-09-19 15:02:48

    http后面的冒号你输入法错了,用的是中文。

  • 数不完的星星
    2018-09-19 12:09:31

    <!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 message=confirm("是否需要打开网页?");

      if(message==true){

         var site=prompt("请输入网址:",'');

         if(site){ 

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

         }else{

          alert("打开失败");  

         }

      }

    }  

    </script> 

    </head> 

    <body> 

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

    </body>

    </html>


  • 荼灵
    2018-09-19 10:42:58

    <!DOCTYPE html>
    <html>
    <head>
     <meta charset="UTF-8">
     <title>Document</title>
     <script type="text/javascript"> 
      function openWindow(){   
          // 新窗口打开时弹出确认框,是否打开      // 通过输入对话框,确定打开的网址,默认为 https://www.imooc.com/      //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
        
       var message=confirm("是否需要打开网页?");
       if(message==true){
        var site=prompt("请输入网址:"," https://www.imooc.com/");
        if(site!=null){
         window.open("https://www.baidu.com/",'_blank','width=400,height=500,menubar=no,toolbar=no');
        }else{
         alert("打开失败"); 
        }
       }
       else{
        alert("不需要打开网页");
       }
      }
      openWindow();
     </script>
    </head>
    <body>
     <input type="button" value="新窗口打开网站" onclick="openWindow()" />
    </body>
    </html>

    是  https ,不是 http 。测试的时候用的 百度 ,窗口 长宽高 无法规定。

  • 瞅瞅啥
    2018-09-18 20:32:39

    <!DOCTYPE html>

    <html>

     <head>

      <title> new document </title>  

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

      <script type="text/javascript">  

    function openWindow(){    

        // 新窗口打开时弹出确认框,是否打开


        // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/


        //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。

       

    var message=confirm("是否需要打开网页?");

    if(message==true){

    var site=prompt("请输入网址:"," http://www.imooc.com/");

    if(site!=null)

      { 

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

      }


    else

      {  alert("打开失败");  }


    }else{alert("不需要打开网页");}

    </script> 

     </head> 

     <body> 

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

     </body>

    </html>


  • qq_Mathilda_ftuwIT
    2018-09-18 20:25:38

    toolbar=no 后面缺个引号吧