谁能解答下为什么点击没有反应

来源:2-7 编程练习

王同志

2017-06-21 15:52

<!DOCTYPE html>

<html>

 <head>

  <title> new document </title>  

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

  <script type="text/javascript">  

  <!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/");

  if(url!=null)

  {window.open(url,"_blank",'width=400px,height=400px,menubar=no,toolbar=no');

  }

  else{alert("再见");

      

  }

  }

  else{alert("再见");

      

  }

      

  }

    

  </script> 

 </head> 

 <body> 

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

 </body>

</html>  

  


写回答 关注

4回答

  • qq_王宇辰chen_0
    2017-06-21 16:12:18
    已采纳

    错误地方

    http://img.mukewang.com/594a2a4200017fc706980759.jpg        

  • 清晨细雨
    2017-06-21 16:10:39

    还有,你定义了两遍html,把前6行删了就好了


  • qq_王宇辰chen_0
    2017-06-21 16:09:35

    <!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/");

                            if(url!=null)

                            {window.open(url,"_blank",'width=400px,height=400px,menubar=no,toolbar=no');

                            }

                            else{alert("再见");


                            }

                        }

                        else{alert("再见");


                        }


                    }


        </script>

    </head>

    <body>

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

    </body>

    </html>  


  • 清晨细雨
    2017-06-21 16:09:19

    你的请输入网址后面的“逗号”,用的是中文输入法

    清晨细雨

    还有,你定义了两遍html,把前6行删了就好了

    2017-06-21 16:12:08

    共 1 条回复 >

JavaScript入门篇

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

739817 学习 · 9566 问题

查看课程

相似问题