这么写还有优化的空间吗

来源:2-7 编程练习

無龑

2019-11-04 13:14

<!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 message=confirm("是否打开新网页?");

    if(message==true)

    {

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

    }

    else

    {

        return null;

    }

  }    

  </script> 

 </head> 

 <body> 

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

 </body>

</html>


写回答 关注

2回答

  • 慕仙9347523
    2019-11-13 02:19:24
    function openWindow(){
            var Message = confirm("Are you sure want to open a site?");
            if(Message == true){
                var URL = prompt("Enter an url to open","http://www.imooc.com/")
                while (URL === ""){
                    alert("Please enter an url");
                    var URL = prompt("Enter an url to open","http://www.imooc.com/");
                    }
                    if (URL != null) {
                        window.open(URL,"_blank","width=400,height=500,menubar=no,toolbar=no");
                    } else {
                        return;
                    }
            } else {
                return;
            }
        }


  • Arcadie
    2019-11-04 15:55:58

    http://img1.mukewang.com/5dbfd9690001416f07520098.jpg

    少满足一个要求

    無龑

    哦哦,漏了一个

    2019-11-05 12:39:04

    共 1 条回复 >

JavaScript入门篇

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

739817 学习 · 9566 问题

查看课程

相似问题