1、 function a() { this ?} //This:指向 windows
2、 function b() { return function() { this ?}}b() () ; //This:指向 windows
2、function c() { return {s: function() {this}}}c(). s() ; //This:指向 object
由于其运行期绑定的特性,JavaScript中的this含义要丰富得多,它可以是全局对象、当 前对象或者任意对象,这完全取决于函数的调用方式。

Was this helpful?

1 / 0

发表回复 0

Your email address will not be published.