猿问

第二章最后的练习题卡住了,不知道代码哪里有问题,希望大家指正

<!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 mess=confirm("是否打开网页");

              if(mess==true)

              {

                prompt("输入网站","http://www.imooc.com");

              }

              var openshit=prompt

                if(openshit!=null)

                {

                window.open('openshit','height=500,width=400,menubar=no,toolbar=no')

                }

                else

                {alert("badnews")}

              else{alert("badnews")

              }


    

    

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


leonailele
浏览 1340回答 1
1回答

千秋此意

function openWindow() {     var mess, openshit;     mess = confirm("是否打开网页");     if (mess == true) {         openshit = prompt("输入网站", "http://www.imooc.com");         if (openshit != null) {             window.open(openshit, 'height=500,width=400,menubar=no,toolbar=no')         } else {             alert("badnews")         }     } else {         alert("badnews")     } }都是些奇怪的错误。。。平时养成好习惯吧,一定要注意缩进!
随时随地看视频慕课网APP

相关分类

JavaScript
我要回答