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

        

        if(conweb==true){

    var myweb=prompt("输入你要打开的网址","http://www.imooc.com/");}

   

        if myweb!=null{

    window.open(myweb,"_blank","width=400px,height=500px,menubar=no,toolbar=no");}

    

        else {

        alert("结束");}

    }

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


提问者:Jessica_C 2015-11-29 13:56

个回答

  • 剑走偏锋z
    2015-12-02 23:58:10

    myweb!=null要加的,用括号括起来。

  • Jessica_C
    2015-11-29 14:06:52

    知道问题在哪了。。。谢谢


      if myweb!=null{ 这个部分是不是没必要加的