问答详情
源自: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(){

        var open=confirm("确定打开窗口?")        // 新窗口打开时弹出确认框,是否打开

        if(open==ture){

            var URL=prompt("请输入网址","http://www.imooc.com/")    // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/

            if(prompt!=null){

           window.open("http://www.imooc.com/","_blank","width=400,height=500,menubar=no,toolbar=no,scrollbars=no")}   //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。

            else{alert("bye!")} }

            

         else{alert("bye!")}

         }      

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


提问者:Bill0123 2015-08-03 17:04

个回答

  • Perona
    2015-08-03 21:23:15
    已采纳

    <!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 open=confirm("确定打开窗口?")        // 新窗口打开时弹出确认框,是否打开
            if(open==true){
                var URL=prompt("请输入网址","http://www.imooc.com/")    // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
                if(prompt!=null){
               window.open("http://www.imooc.com/","_blank,width=400,height=500,menubar=no,toolbar=no,scrollbars=no")}   //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
                else{alert("bye!")} }
                 
             else{alert("bye!")}
             }      
      </script> 
     </head> 
     <body> 
     <input type="button" value="新窗口打开网站" onclick="openWindow()" /> 
     </body>
    </html>


  • lt_mk
    2015-08-05 17:52:41

    1. javascript语句末尾都没加分号;

    2. windowopen("http://www.imooc.com/","_blank","width=400,height=500,menubar=no,toolbar=no,scrollbars=no");

      这一句只能打开”http://www.imooc.com/“,应该改为:

      windowopen(URL,"_blank","width=400,height=500,menubar=no,toolbar=no,scrollbars=no");

    3. if(){

      }

      else{

      }

      你的else语句都放在了if语句的大括号里了哦。。

    4. 标点符号一定记得换成英文输入!!!标点符号一定记得换成英文输入!!!标点符号一定记得换成英文输入!!!(重要的事情说三遍)不然后面找问题,会找到哭的~

  • Bill0123
    2015-08-03 17:08:13

    ture改成true还是不行

  • Perona
    2015-08-03 17:08:58

    if(open==ture){

    这里是true,不是ture

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

    这里逗号错了,敲成中文的啦,改成英文的

    修改后的代码

    <!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 open=confirm("确定打开窗口?")        // 新窗口打开时弹出确认框,是否打开
            if(open==true){
                var URL=prompt("请输入网址","http://www.imooc.com/")    // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
                if(prompt!=null){
               window.open("http://www.imooc.com/","_blank","width=400,height=500,menubar=no,toolbar=no,scrollbars=no")}   //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
                else{alert("bye!")} }
                
             else{alert("bye!")}
             }      
      </script> 
     </head> 
     <body> 
     <input type="button" value="新窗口打开网站" onclick="openWindow()" /> 
     </body>
    </html>