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

彻底理解js中this的指向

时间:2016-07-25 18:06:28      阅读:221      评论:0      收藏:0      [点我收藏+]

标签:

<script>
            //this指向的是最终调用它的那个对象
            
            
            //this指向的是window
            function aa(){
                var str = ‘jack‘;
                console.log(this.str); //undefined
                console.log(this); //window
            }
            window.aa();
            
            //this指向的是bb
            var bb = {
                str : ‘jack‘,
                show : function(){
                    console.log(this.str); //jack
                }
            }
            window.bb.show();
        </script>

 

彻底理解js中this的指向

标签:

原文地址:http://www.cnblogs.com/wenxiangxu/p/5704220.html

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