问答详情
源自:2-7 编程练习

1.为什么我的代码没有显示出窗口的要求(400*500),我在新打开窗口里设置了啊? 2.打开网址出现此页无法访问,回到首页.?请前辈们回复下我啊谢啦

<script type="text/javascript">  

    function openWindow(){

        var mymessage=confirm("是否打开?");

        if(mymessage==true)

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

           if(url!=null)

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

           else

           {alert("再见!");}

        else

        {alert("再见!");}

        }  

  </script> 


提问者:倾城恋1115 2015-04-09 10:12

个回答

  • 爱折腾的卤蛋
    2015-04-11 11:57:46

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

    第三个参数格式不规范 没有左单引号闭合

  • 丿丫丫
    2015-04-09 12:28:18

    你自己看吧,给你改好的。。。


     function openWindow(){

            var mymessage=confirm("是否打开?");

            if(mymessage==true)

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

               if(url!=null)

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

               else

               {alert("再见!");}
            }

            else

            {alert("再见!");}

            } 



    出现了问题应该看看别人的代码啊 。。还有你写代码很不仔细。。。