var name = "this windos";
var object = {
name : "my object",
getnamefunc : function () {
return function () {
return this.name;
};
}
};
var reslut = object.getnamefunc();
console.log(object.getnamefunc()());
console.log(reslut);
console.log(reslut.toString());
console.log(reslut());
console.log(object.name);
console.log(name);```
在看高程3 关于 this 在闭包中介绍
如上代码
我在终端用 node 跑范例代码 结果 浏览器 和 node 给出了不同的答案
在 node 7.7.2 结果
undefined
[Function]
function () {
return this.name;
}
undefined
my object
this windos
在 chrome 57.0.2987.98 (64-bit)
this windos
function () {
return this.name;
}
function () {
return this.name;
}
this windos
my object
this windos
这是一个专为移动设备优化的页面(即为了让你能够在 Google 搜索结果里秒开这个页面),如果你希望参与 V2EX 社区的讨论,你可以继续到 V2EX 上打开本讨论主题的完整版本。
V2EX 是创意工作者们的社区,是一个分享自己正在做的有趣事物、交流想法,可以遇见新朋友甚至新机会的地方。
V2EX is a community of developers, designers and creative people.