码迷,mamicode.com
首页 > Web开发 > 详细

05JS高级 方法没有块级作用域

时间:2014-06-14 09:02:51      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   java   http   

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title></title>
    <script type="text/javascript">
        //1.js 顶级作用域 是window
        var num = 1;
        alert(window.num);
        //2 方法作用域
        function test() {
            number2 = 2;//方法内部声明局部变量的时候,需要加var 否则就是全局变量
            var num3 = 3;//局部变量在方法外部无法访问

            //3 没有块级作用域
            for (var i = 0; i < 10; i++)
            {
                var num4 = 4;
            }
            alert(num4); //因为没有块级作用域,所以此处的变量num4就是方法的一个局部变量
        }
        test();
        alert(window.number2);
    </script>
</head>
<body>
</body>
</html>

 

05JS高级 方法没有块级作用域,布布扣,bubuko.com

05JS高级 方法没有块级作用域

标签:style   class   blog   code   java   http   

原文地址:http://www.cnblogs.com/sumg/p/3787792.html

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