问答详情
源自: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 gg==confirm("是否打开?");

    if(gg==true)

    {

        var hh==prompt("打开网址吗","http://www.imooc.com/");

        if(hh!=null)

        {

            window.open(hh,"_blank",'width=400,height=500,toolbar=no,menubar=no');

        }

        else

        {

            alert("bye");

        }

    }

else

{

    alert("bye");

}

  }  

  </script> 

 </head> 

 <body> 

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

 </body>

</html>



提问者:95空巢老人 2020-04-08 01:23

个回答

  • 小白正在努力
    2020-04-13 16:25:57
    已采纳

    =和==性质不一样的,=是赋值,==是等于

  • 95空巢老人
    2020-04-08 01:31:42

    ?多加了= 我晕死 查了好久