var name = "The Window";
var object = {
name : "My Object",
getNameFunc : function(){
return function(){
return this.name;
};
}
alert(object.getNameFunc()());
如上,为什么打印The Window,和闭包联合一起讲下
相关分类