可运行代码

来源:2-7 编程练习

阿钰12346

2018-08-12 23:18

<!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 = prompt("是否打开新窗口,请输入yes或no")      // 新窗口打开时弹出确认框,是否打开        if (open == "yes"){// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/                        //打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。            window.open('http://www.imooc.com','_blank','width=400,height=500,menubar=no,toolbar=no')        }else{            alert("取消新弹窗")        }            }  </script>  </head>  <body> 	  <input type="button" value="新窗口打开网站" onclick="openWindow()" />  </body></html>


写回答 关注

2回答

  • 慕数据0594206
    2018-08-15 12:00:57

     <title> new document </title>  

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

      <script type="text/javascript">  

      function openWindow(){  

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

        var myclick = confirm("是否打开,点击确定或取消?");

        if(myclick==true)

        {

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

            var webmess = prompt("请输入你的网址,default或者是其他网址?");

                if(webmess == "default")

                {

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

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

                }

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

        }

        else { alert("ByeBye"); }

      }  

      </script> 

     </head> 

     <body> 

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

     </body>

    </html>


  • 夜色催耕
    2018-08-12 23:44:16

    <!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==true)

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

                        if(url!==null){

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

                        }

                         else{

                             alert("再见22");

                        }

                }   

               else{

                   alert("再见11");

                }

         }

     </script> 

     </head> 

     <body> 

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

     </body>

    </html>



JavaScript入门篇

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

739818 学习 · 9566 问题

查看课程

相似问题