一、一般函数:谁调用就指向谁
二、箭头函数:
1、函数体内的this对象,就是定义时所在的对象,而不是使用时所在的对象。比如说箭头函数在a函数里面,this就指向a函数。
2、箭头函数实际并没有自己的this对象,其内部的this自动指向外层代码块的this
3、箭头函数不能使用call apply bind 改变this指向
obj = {
name: 'zs',
age: 18,
say: () => {
console.log(this);
}
}
obj.say()
//输出的this指向window,因为say的在obj里面而
//obj的this是指向window的
三、匿名函数:
匿名函数的执行环境具有全局性,this对象通常指向window
四、闭包里面的this指向,指向window
var obj = {
say: function () {
console.log(this); //指向对象obj
var fo = function () {
console.log(this); //匿名函数中的this,指向window
}
fo();
function foo() {
console.log(this); //闭包中的this,指向window
}
foo()
}
}
obj.say()
五、定时器setTimeout,setInterval
定时器中回调函数的this 也是指向window的
setTimeout(function () {
console.log(this);//window
})
六、改变this指向的常用方法
1.将外部函数的this赋值给一变量,内部函数中使用该变量,而不直接使用this
2.使用bind进行this绑定
3.使用箭头函数 箭头函数中的this默认指向外层函数的this