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

js 对象的深层嵌套函数对对象属性的访问

时间:2017-04-29 09:43:35      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:对象   logs   嵌套   his   sharp   highlight   function   console   var   

var obj = {
    foo: "hi",
    f1: function() {
        function f2(that) {
            console.log(that);
        }
        f2(this.foo);           
    }
        
};
obj.f1();  // hi



Function.prototype.foo = "hello";
Function.prototype.f = function() {
        var that = this;
        setTimeout(function(that){
                console.log(that.foo);
        }, 100, that);
}
Function.prototype.f();  // hello

  

js 对象的深层嵌套函数对对象属性的访问

标签:对象   logs   嵌套   his   sharp   highlight   function   console   var   

原文地址:http://www.cnblogs.com/ax-null/p/6784208.html

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