美文网首页
第二章 JavaScript变量

第二章 JavaScript变量

作者: Be一瑶儿阿尔忒弥斯 | 来源:发表于2017-03-23 23:48 被阅读5次

    <3>

                            JavaScript变量的作用域
    

    全局变量:省略var,或者在函数外声明
    局部变量:在函数内声明
    全局变量可以在整个脚本中被使用,可在不同的类中相互引用(指定窗口名)
    例如:
    <pre><code>
    <script>

    var Name="JavaScript"; //Name是全局变量并且在函数外声明

     test();function test(){
    

    var name="Java"; //name是局部变量

      document.write("<Ge>"+Name);        //输出全局变量Name
      document.write("<Ge>"+name);        //输出局部变量name
                                 } 
    

    document.write("<Ge>"+Name);

    document.write("<Ge>"+name);

    </script></code>

    相关文章

      网友评论

          本文标题:第二章 JavaScript变量

          本文链接:https://www.haomeiwen.com/subject/akqdgttx.html