运行不了,求大神?

来源:2-7 编程练习

19921009ab

2016-05-18 17:58

<!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 cz=confirm("是否打开");

if(cz==true)

{var cl=prompt("通过输入对话框,确定打开的的网址","http://www.imooc.com/");

if(cl!=null)

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

else{alert("88");}

else{alert("88");}

    

    

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


写回答 关注

5回答

  • 大可无谐号
    2016-05-19 15:55:29
    function openWindow(){
        // 新窗口打开时弹出确认框,是否打开
        var newWin = confirm("是否打开新的网址?");
        // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
        if(newWin == true)var newUrl = prompt("打开新的网址:","http://www.imooc.com/");
        //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
        if(newUrl != null)window.open(newUrl,"_blank","width=400,height=500,menubar=no,toolbar=no");
        }


  • 慕娘9282524
    2016-05-18 18:39:46

    你这个一共有三处错误

    1   function openWindow()  后面没有{  }

    2  第一个 else{alert("88");}  这里  它还包含在第一个if语句中  所以 这里应该有个 }  来结尾

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


    这里  "_blank"  应该有个 ,  

  • z_qiannnnn
    2016-05-18 18:39:34
    <!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 cz=confirm("是否打开");
       if(cz==true)
      {
        var cl=prompt("通过输入对话框,确定打开的的网址","http://www.imooc.com/");
            if(cl!=null)
           {
            window.open('http://www.imooc.com/','_blank','width=400,height=500,menubar=no,toolbar=no') 
            }
            else
            {
            alert("88");
             }
        
        }
        else
        {
        alert("88");
        }
    }
        
      </script> 
     </head> 
     <body> 
     <input type="button" value="新窗口打开网站" onclick="openWindow()" /> 
     </body>
    </html>


    //其实你写得没有错,但是括号对应逻辑比较乱,两个if  else 的括号补好,还有window里少标点符号.加上好好捋一遍就ok了

  • 我怀恋的
    2016-05-18 18:19:00
    <!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 cz=confirm("是否打开");
    if(cz==true)
    {window.open('http://www.imooc.com/','_blank''width=400,height=500,menubar=no,toolbar=no')}
    else{alert("88");
    }
    }
        
        
      </script> 
     </head> 
     <body> 
     <input name="button" type="button" onclick="openWindow()"   value="新窗口打开网站"/> 
     </body>
    </html>


  • sharby
    2016-05-18 18:11:13

     function openWindow(){
            var sure=confirm('是否打开?');
            if(sure==true){
                window.open('http://www.imooc.com/','_blank','width=400,height=500,scrollbars=yes,menubar=no,toolbar=no')
            };
        };

JavaScript入门篇

JavaScript做为一名Web工程师的必备技术,本教程让您快速入门

739817 学习 · 9566 问题

查看课程

相似问题