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

窗口没打开,麻烦帮看看

<!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 lol=confirm("确定在新窗口打开网址吗?")

        if(lol==true)

        {

            var wangzhi=prompt("确定打开网址?,http://www.imooc.com/")

            if(wangzhi!=null)

            {

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

            }

            else

            {

                alert("再见")

            }

        }

        else

        {

            alert("再见")

        }

    

    

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


提问者:慕斯3035540 2016-07-22 15:15

个回答

  • Lyh_航
    2016-07-22 16:12:31
    已采纳

    <!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 lol=confirm("确定在新窗口打开网址吗?");

            if(lol==true)

            {

                var wangzhi=prompt("确定打开网址?");

                if(wangzhi=="")

                {

               

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

                }

                

                else

                {

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

                }

            }

            else

            {

                alert("再见")

            }

        }

        

     </script> 

     </head> 

     <body> 

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

     </body>

    </html>

    这个我测试过是可以打开,,你最开始的那个也是行的啊 !如果还不行的话,可能是我没太搞懂你想要表达是什么~你可以自行百度一下吧~

  • 楼台小巷
    2016-07-22 16:26:00

    var wangzhi=prompt("确定打开网址?,http://www.imooc.com/")

    是不是双引号漏了,改成:

    var wangzhi=prompt("确定打开网址?","http://www.imooc.com/")

    试试看
     

  • qq_匹夫_5
    2016-07-22 15:55:14

    你看看你的双引号

  • Lyh_航
    2016-07-22 15:50:48

       if(wangzhi=="")

                {

               

                    window.open("http://www.imooc.com/");

                }

                

                else

                {

                    window.open(wanhzhi);

                }

    你不要设置他弹窗就好了啊

  • 慕斯3035540
    2016-07-22 15:41:56

    神啊!!!!你这也是打不开新窗口啊    是连接窗口  不是弹窗啊   我弹窗正常  就是连接不到新窗口 widow.open没起作用啊!!!

  • Lyh_航
    2016-07-22 15:30:22

    <!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 lol=confirm("确定在新窗口打开网址吗?");

            if(lol==true)

            {

                var wangzhi=prompt("确定打开网址?");

                if(wangzhi=="")

                {

               

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

                }

                

                else

                {

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

                }

            }

            else

            {

                alert("再见")

            }

        }

        

     </script> 

     </head> 

     <body> 

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

     </body>

    </html>