问答详情
源自: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 web = confirm("你是否要打开网站");

        if (web == true)

        {

            var url=prompt("请输出网站","http://www.imooc.com/");

            if (url!=null)

            {

                window.open(url,"_blank","width=400,height=500");

            }

            else{

                alert("再见");

            }

        }

    else

    {

        alert("再见");

    }

    }

    

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


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


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

    

    

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


提问者:慕码人5220990 2021-04-24 09:41

个回答

  • weixin_慕虎2198871
    2021-04-27 16:05:11

    var url=prompt("请输出网站","http://www.imooc.com/");

    看看这一行是不是逗号有问题 我刚刚复制了 改了这里打开了

  • 回看星辰
    2021-04-27 15:53:42

    <!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 web = confirm("你是否要打开网站");

            if (web == true)

            {

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

                if (url!=null)

                {

                    window.open('url','_blank','width=400,height=500');

                }

                else{

                    alert("再见");

                }

            }

        else

        {

            alert("再见");

        }

        }

      </script> 

     </head> 

     <body> 

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

     </body>

    </html>

    我在你的代码基础上修改了部分,主要是

     if (web == true)

            {

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

                if (url!=null)

                {

                    window.open('url','_blank','width=400,height=500');

                }

    这一段,记得中间的逗号之类的也要用英文写。