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

变量被赋值了一个网址如何调用这个网址?

<!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 a=confirm("确定打开吗?");

            if(a==true){

              var b=prompt("请输入您的网址!")  

if(b!==null){

 window.open("b","_blank","top=200,left=200,width=600,height=400,menubar=no,toolbar=no")

}else{}

            }else{}

        }

    

  </script> 

 </head> 

 <body> 

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

 </body>

</html>

变量b已经被赋值了。比如我们输入的是一个网址。这个时候b就被赋值了一个网址。如何使用b的值呢?

正在回答

2 回答

if(b!==null)  为什么这样写  用ture不行吗?

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

变量名是不需要加引号的。

window.open(b,"_blank","top=200,left=200,width=600,height=400,menubar=no,toolbar=no")

这里最好给个默认网站吧

var b=prompt("请输入您的网址!","http://www.imooc.com")

修改后的代码,你看看

<!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 a=confirm("确定打开吗?");
            if(a==true){
                var b=prompt("请输入您的网址!","http://www.imooc.com")
                if(b!==null){
                    window.open(b,"_blank","top=200,left=200,width=600,height=400,menubar=no,toolbar=no")
                }else{}
            }else{}
        }

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


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

举报

0/150
提交
取消

变量被赋值了一个网址如何调用这个网址?

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