JavaScript有自己的一套this机制,在不同情况下,this的指向也不尽相同。
全局范围
全局变量
全局范围使用this指向的是全局变量,浏览器环境下就是window。
注:ECMAScript5的strict模式不存在全局变量,这里的this是undefined。
foo(); //全局变量
注:ECMAScript5的strict模式不存在全局变量,这里的this是undefined。
对象方法调用
test.foo(); //test对象
var test2 = test.foo;
test2(); //全局变量
test2(); //全局变量
不过由于this的晚绑定特性,在上例的情况中this将指向全局变量,相当于直接调用函数。
这点非常重要,同样的代码段,只有在运行时才能确定this指向
构造函数
new Foo(); //新创建的对象
console.log(foo);
console.log(foo);
在构造函数内部,this指向新创建的对象。
显式设置this
var bar = {};
foo.apply(bar,[1,2]); //bar
foo.call(1,2); //Number对象