请大家帮我看下问题出在了哪里?

来源:2-7 编程练习

烜烜

2016-01-22 17:26

<!DOCTYPE html>
<html>
 <head>
  <title> new document </title>  
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>   
  <script type="text/javascript"> 
    function openWindow(){
    var page = confirm("新窗口打开网站");
    	if(page == true){
    		var url = prompt("通过输入对话框,确定打开网站", "http://www.imooc.com");
    	}
    	else if(url != null){
    		window.open('http://www.imooc.com', '_blank','width=400px,height=500px,menubar=no,toolbar=no')
    	}
    	else if(page == false){
    		alert("byebye")
    	}
    }
    // 新窗口打开时弹出确认框,是否打开

    // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/

    //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
    
    
  </script> 
 </head> 
 <body> 
	  <input type="button" value="新窗口打开网站" onclick="openWindow()" /> 
 </body>
</html>


写回答 关注

3回答

  • Tjing617
    2016-01-22 17:49:15
    已采纳

    你的if和第二个else if 不是同等地位的,你这样写,如果if的条件成立,就不会执行else if里面的语句了,所以要把那个对窗口的判断放在第一个if条件里面

    也就是要改成

       if(page == true){

                var url = prompt("通过输入对话框,确定打开网站", "http://www.imooc.com");

                if(url != null){

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

                }

            }

            else{

                alert("byebye");

            }


    烜烜

    thanks

    2016-01-22 18:36:27

    共 1 条回复 >

  • 蝶飞凤舞02
    2016-01-22 17:54:52

    不需要else if。楼上正解


  • 伊望岁月
    2016-01-22 17:33:11
            if(page == true){
                var url = prompt("通过输入对话框,确定打开网站", "http://www.imooc.com");
                if(url != null){
    	            window.open(url, "_blank",'width=400px,height=500px,menubar=no,toolbar=no')
    	        }
            }
            else{
                alert("byebye");
            }

    改成这样

JavaScript入门篇

JavaScript做为一名Web工程师的必备技术,本教程让您快速入门

739818 学习 · 9566 问题

查看课程

相似问题