码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript 作用域链图详解

时间:2014-06-24 21:17:24      阅读:219      评论:0      收藏:0      [点我收藏+]

标签:class   blog   code   java   http   ext   

    <script type="text/javascript">
        /**
         *  作用域链:
         */
        var a = "a";
        function hao947(){
            var b = "b";
            alert(a);// output a
            alert(b);// output b
      //      alert(c);// output undefind
            function hao(){
                var c = "c";
				alert(a);// output a
				alert(b);// output b
				alert(c);// output c
            }
            return  hao();
        }
        
        hao947();
        alert(a); // output a
   //     alert(b); // output undefind
   //     alert(c); // output undefind
    </script>
bubuko.com,布布扣

JavaScript 作用域链图详解,布布扣,bubuko.com

JavaScript 作用域链图详解

标签:class   blog   code   java   http   ext   

原文地址:http://blog.csdn.net/hao947_hao947/article/details/33317051

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!