javaScript入门篇 2-7编程挑战 有谁做出来了(可以正确运行的)?

来源:2-7 编程练习

慕粉4340077

2016-11-15 11:43

我的代码不知道哪里出错了,请帮我改改,谢谢了!代码如下:

写回答 关注

4回答

  • 莫大怪兽
    2016-11-15 13:49:18
    已采纳
    function openWindow()//创建函数,响应按钮点击事件
        {
            //1点击新窗口打开网站按钮时弹出确认框(confirm)
            var mywin=confirm("确定打开新网页?");
            if(mywin==true)//判断是否点击确认
            {
                //2、通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
                var Wopen=prompt("请输入一个网址","http://www.imooc.com/");
                if(Wopen!=null)//点击确认
                {
                    //打开宽400像素,高500像素,无菜单栏、无工具栏的窗口
                    window.open(Wopen,'_blank','width=400,height=500,menubar=no,toolbar=no');
                }
            }
        }


    慕粉4340...

    非常感谢!你的代码写的很好,向你学习!

    2016-11-15 16:21:23

    共 1 条回复 >

  • 樱桃is
    2016-11-15 15:41:03
    <!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 isopen = confirm('确认新建窗口打开网页');
        if(isopen ==true){
             // 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
            var input = prompt('请输入网址确认打开');
            if(input != null){
                 //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
                 window.open(input,"_blank",'width=400,height=500,menubar=no,toolbar=no');
                
            }
            
        }
        
        
        }
       
       
        
        
      </script> 
     </head> 
     <body> 
    	  <input type="button" value="新窗口打开网站" onclick="openWindow()" /> 
     </body>
    </html>


  • 慕粉4287964
    2016-11-15 13:48:48

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    <html xmlns="http://www.w3.org/1999/xhtml">

    <head>

    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />

    <title>无标题文档</title>

    </head>

      <meta http-equiv="Content-Type" content="text/html; charset=gbk"/>   

      <script type="text/javascript">  

        

    function test1(){
       var testif = confirm("是否打开新窗口?");
       var ifsure = prompt("请输入是和否");
       if(testif == true){
           if(ifsure!=null){
               window.open('http://www.imooc.com/',
                   '_blank',
                   'width=400,height=500,menubar=no,toolbar=no,status=no,scrollbars=yes'
               );
           }
       }
    }

        

      </script> 

     </head> 

     <body> 

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

     </body>


    </html>


  • 慕盖茨1893510
    2016-11-15 12:05:23

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

    <html xmlns="http://www.w3.org/1999/xhtml">

    <head>

    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />

    <title>无标题文档</title>

    </head>

      <meta http-equiv="Content-Type" content="text/html; charset=gbk"/>   

      <script type="text/javascript">  

        

       function openWindow(){

       var msg =confirm("是否打开新窗口?");

               if(msg==true){

                   var url= prompt("请输入是和否");

                   if(url=="是"){

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

                   }

               }

           }

        

      </script> 

     </head> 

     <body> 

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

     </body>


    </html>


    慕粉4340...

    谢谢!很好

    2016-11-15 16:23:57

    共 2 条回复 >

JavaScript入门篇

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

739817 学习 · 9566 问题

查看课程

相似问题