以下这段代码为什么不能执行啊。。。求大神解析

<!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 a=confirm("是否打开该网址?")

        

        if(a==true){

        var b=prompt("通过输入对话框,确定打开这个网址?","http://www.imooc.com/");}

        

        if(b!=null){

        window.open("http://www.imooc.com/","_blank","width=400 height=500 ");}

        

        else{alert("拜拜`");}

        

        else{alert("拜拜`");}

    }

    

    

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


慕粉3414280
浏览 2172回答 4
4回答

Suber丶林

① 既然你用H5的文档标准,那你的编码就得改成H5的写法,即把meta修改成<meta charset="utf-8">② H5中引入JavaScript和CSS都不用指定type属性,所以可以把<script>标签中的type="text/javascript"去掉③ 你的if else嵌套错了④ 你的变量a只用了1次,可以省略掉⑤ 布尔值之间就不需要判断是否与布尔值相等,直接判断即可,再者undefinal、null、0、NaN、''、都是false⑥ 你的prompt()第二个参数冒号和window.open()第一个参数中冒号使用了全角状态修改后代码为:<!DOCTYPE html> <html> <head>   <title> new document </title>   <meta charset="utf-8">   <script>   function openWindow() {     // 变量a只用了1次,所以没必要存储变量     if (confirm("是否打开该网址?")) {            // 全角冒号换成半角冒号       var b = prompt("通过输入对话框,确定打开这个网址?", "http://www.imooc.com/");               // 这里null为false       if (b) {          // 全角冒号换成半角冒号          window.open("http://www.imooc.com/", "_blank", "width=400 height=500 ");          // 有个疑问,业务是否为打开用户输入的URL?是的话,如下:          // window.open(b, "_blank", "width=400 height=500 ");       } else {           alert("拜拜`");       }                // 第二个alert要放外面     } else {       alert("拜拜`");     }   }   </script> </head> <body>     <input type="button" value="新窗口打开网站" onclick="openWindow()" /> </body> </html>

刚毅87

<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title> new document </title> <meta http-equiv="Content-Type" content="text/html; charset=gbk" /> <script type="text/javascript"> function openWindow() { var a = confirm("是否打开该网址?") if (a == true) { var b = prompt("通过输入对话框,确定打开这个网址?", "http://www.imooc.com/"); //这个 if 应该写在上个 if 里面 if (b != null) { window.open("http://www.imooc.com/", "_blank", "width=400 height=500 "); } else { alert("拜拜`"); }  }else { alert("拜拜`"); } } </script> </head> <body> <input type="button" value="新窗口打开网站" onclick="openWindow()" /> </body> </html>看看是否符合你的要求,可以再提望采纳

qyy2499760117_叶子

你的判断语气不合规范,错了,应该是If()else(),要么就if(),再if(),不能乱的。<!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 a = confirm("是否打开该网址?")            if (a == true) {                var b = prompt("通过输入对话框,确定打开这个网址?", "http://www.imooc.com/");            }            else {                alert("拜拜`");            }        }        if (b != null) {            window.open("http://www.imooc.com/", "_blank", "width=400 height=500 ");        } else {            alert("拜拜`");        }    </script></head><body><input type="button" value="新窗口打开网站" onclick="openWindow();"/></body></html>
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript