为了账号安全,请及时绑定邮箱和手机立即绑定

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

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

正在回答

4 回答

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');
            }
        }
    }


0 回复 有任何疑惑可以回复我~
#1

慕粉4340077 提问者

非常感谢!你的代码写的很好,向你学习!
2016-11-15 回复 有任何疑惑可以回复我~
<!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>


0 回复 有任何疑惑可以回复我~

<!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>


0 回复 有任何疑惑可以回复我~

<!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>


0 回复 有任何疑惑可以回复我~
#1

慕粉4340077 提问者

谢谢!网友们都热情,又找到学习的氛围了!加油
2016-11-15 回复 有任何疑惑可以回复我~
#2

慕粉4340077 提问者

谢谢!很好
2016-11-15 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

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

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信