问答详情
源自: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 wz=prompt("在下方输入网址,并确认!","http://www.imooc.com")        
if(wz!=null)      
{          window.open(wz,'_blank','width=400px,hight=500px,menubar=no,toolbar=no')
                else         
               document.write("Byebye!")      
              }      
              else      
              document.write("hello")      
              }  
              } 
               </script>  
               </head>  
               <body> 	  
               <input type="button" value="打开网站" onclick="openWindow()" />  </body></html>


提问者:子杉 2018-10-05 13:11

个回答

  • 汪__
    2018-10-07 11:08:24
    已采纳

    https://img4.mukewang.com/5bb978710001be5c09140356.jpg你的括号有问题,代码书写习惯不好导致很难看出来哪里没有对称,自己好好找找.    望采纳!谢谢

  • 慕沐750848
    2018-10-05 14:43:28

    </script>的上面两个大括号中间加一个openwindow();