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

我想问一下我输入这个是什么意思?

function openWindow(){

var a=confirm("是否打开新窗口"); if(a==true)

{

var b=prompt(请输入要打开的网址","http://www.imooc.com/");

if(b!=null)

{

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

}


}

}

黑体加粗的意思是什么???

正在回答

1 回答

如果b不为空值,就是说添加了网址进去,就执行这个指令,你再补充一个else,把网址去掉,就能看到空值下输出的东西

<!DOCTYPE html>

<html>


<head>

    <title>Test</title>

    <script type="text/javascript">

        function openWindow() {

            var a = confirm("是否打开新窗口"); 

            if (a == true) {

                var b = prompt("请输入要打开的网址","http://www.imooc.com/");

                if (b != null) {

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

                }

                else{

                    document.write("呵呵");

                }

            }


        }

    </script>

</head>


<body>


    <input type="button" value="点击按钮" onclick="openWindow()" />

</body>


</html>


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

举报

0/150
提交
取消

我想问一下我输入这个是什么意思?

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