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

来源:2-7 编程练习

wsitachi

2015-08-14 17: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 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回答

  • 很爱慕课
    2015-08-19 09:35:57

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

  • Perona
    2015-08-14 17:24:59

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

    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>


JavaScript入门篇

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

739816 学习 · 9566 问题

查看课程

相似问题