this的指向
- 面向对象语言中 this 表示当前对象的一个引用
- 在JavaScript中,this通常指向的是我们正在执行的函数本身,或者是指向该函数所属的对象(运行时)
- 在方法中,this 表示该方法所属的对象。
- 如果单独使用,this 表示全局对象。
- 在函数中,this 表示全局对象。
- 在函数中,在严格模式下,this 是未定义的(undefined)。
- new后this指向实例对象
- 在事件中,this 表示接收事件的元素。
- 类似 call() 和 apply() 方法可以将 this 引用到任何对象。
例子
function Test(name, age) {
this.name = name;
this.age = age;
this.fu = function () {
return function () {
return this;
}
};
return this;
}
var test = new Test('张三', 19);
console.log(test.name); //?
console.log(test.fu); //?
console.log(test.fu()); //?
console.log(test.fu()()); //?
解答:输出 张三 ƒ () {
return function () {
return this;
}
}
ƒ () { return this;
} window
除了new后this指向实例对象外,其它函数嵌套的内部函数中的this都指向window