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

我这个哪里不对


<html>

 <head>

  <title> new document </title>  

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

  <script type="text/javascript">  

    

   function openwindow(){

       var open=confirm("确认打开新窗口吗");

       if(open=true)

{var url=prompt("请输入一个网址","http://www.imooc.com/");

  if(url!=null)  

  {window.open(url,'_blank','width=400,heigth=500,menubar=no,toolbar=no')}

    

    else

    {alert("结束");}

    }

    else

    {alert("结束");}

   }

    

  </script> 

 </head> 

 <body> 

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

 </body>

</html>



正在回答

4 回答

if那里直接写成if(open )就好了。

<!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 open=confirm("是否打开新窗口?");

         // 新窗口打开时弹出确认框,是否打开

        if(open){

            var webaddress=prompt("请输入网址:http://www.imooc.com");

            

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

            if(webaddress!=null){

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

                

    //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。

            }else{alert("结束");

            

            }

        }else{

            alert("结束");

            

        }

        }

  </script> 

 </head> 

 <body> 

 <input type="bu


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

function openWindow()

  {   var open=confirm("确认打开新窗口吗");

       if(open==true)

       {var url=prompt("请输入一个网址","http://www.imooc.com/");

         if(url!=null)

         { window.open(url,'_blank','width=400,heigth=500,menubar=no,toolbar=no')

          }

         else

         {alert("结束");

         }

        }

    else

    {alert("结束");

    }

  } 

  1. openWindow 大小写注意,不然找不到对象

  2. 判断符号是==,一个=是赋值。

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

前面定义的openwindow函数名和后面调用的大小写要一致

0 回复 有任何疑惑可以回复我~
<html>
 <head>
  <title> new document </title>  
  <meta http-equiv="Content-Type" content="text/html; charset=gbk"/>   
  <script type="text/javascript">  
    
   function openWindow(){
       var open=confirm("确认打开新窗口吗");
       if(open==true)
{var url=prompt("请输入一个网址","");
  if(url!=null)  
  {window.open(url,'_blank','width=400,heigth=500,menubar=no,toolbar=no')}
    
    else
    {alert("结束");}
    }
    else
    {alert("结束");}
   }
    
  </script> 
 </head> 
 <body> 
 <input type="button" value="新窗口打开网站" onClick="openWindow()" /> 
 </body>
</html>

自己对比着看吧 很简单的一个问题方法名openWindow是区分大小写的 养成好的编程习惯很重要...

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

举报

0/150
提交
取消
JavaScript入门篇
  • 参与学习       739971    人
  • 解答问题       9566    个

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

进入课程

我这个哪里不对

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