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

{window.open('http://www.imooc.com','_blank','width=400px,height=500px,menubar=no,toolbar=no');    

}

else

{alert("再见!");}

}     

  </script> 

 </head> 

 <body> 

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

 </body>

</html>

提问者:GrayZXH 2015-10-04 13:22

个回答

  • 光芒的心
    2015-10-04 15:25:17
    已采纳

    我的和你一样,也不知道错在哪里,把别人的复制上去,就打开了,同样的自己编写的就打不开,晕死……