问答详情
源自: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==true)
 {var url=prompt("通过对话框输入网址","www.baidu.com");
if(url!=null)
{window.open(url,'_blank','width=400px','height=500px','menubar=no','toolbar=no')}
else
{alert("再见!");}
}
else{alert("再见!");}
   }
</script>
 </head>
 <body>
   <input type="button" value="新窗口打开网站" onclick="openWindow()" />
 </body>
</html>

提问者:anthony_min 2016-10-11 10:14

个回答

  • 殷浩
    2016-10-11 10:36:43
    已采纳

    <!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("通过对话框输入网址","www.baidu.com");

    var url=prompt("通过对话框输入网址","http://www.baidu.com");

    if(url!=null)

    {

       // window.open(url,'_blank','width=400px','height=500px','menubar=no','toolbar=no')

       window.open(url,'_blank','width=400,height=500,meaubar=no,toolbar=no');

        

        }

    else

        {

        alert("再见!");

        }

    }

    else

        {

            alert("再见!");

        }

       }

    </script> 

     </head> 

     <body> 

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

     </body>

    </html>

    帮你改了一下,改的地方作了注释,除此之外,你的两个alert语句都是以中文分号结尾的,不对。现在在网页里可以正常运行了

  • umenoki
    2016-10-11 10:48:50

    {alert("再见!");}
    }
    else{alert("再见!");}

    这两个你用了中文的分号

  • smileclover
    2016-10-11 10:38:03

    alert最后的分号是中文的,应该用英文的。