为了账号安全,请及时绑定邮箱和手机立即绑定

这么写还有优化的空间吗

<!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 回答

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;
        }
    }


0 回复 有任何疑惑可以回复我~

http://img1.sycdn.imooc.com//5dbfd9690001416f07520098.jpg

少满足一个要求

0 回复 有任何疑惑可以回复我~
#1

無龑 提问者

哦哦,漏了一个
2019-11-05 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

这么写还有优化的空间吗

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信