this 的指向问题
Posted qtbb
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了this 的指向问题相关的知识,希望对你有一定的参考价值。
1.全局作用域或者普通函数中 this 指向全局对象 window ( 定时器里面的this 指向 window )
1.1 console.log(this); // window
1.2 function fn(){
console.log( this ); // window
}
fn(); // 实际上是 window.fn(); 所以 this 也是 window
1.3 window.setTimeout(function(){
console.log(this); // window
},1000)
2.方法调用中谁调用 this 指向谁
2.1 var o = {
sayHi:function(){
console.log(this); //this 指向 o
}
}
o.sayHi( ); // 因为是 o 调用了 sayHi 方法 所以 this 指向 o
btn.onclcik = function (){
console.log(this); // btn
}
3.构造函数中 this 指向构造函数的实例
function Fun(){
console.log(this); // this 指向的是 fun 的实例对象
}
var fun = new Fun( ) ; // new 创建了一个新的实例对象 赋值给 fun ,所以 this 指向 fun
以上是关于this 的指向问题的主要内容,如果未能解决你的问题,请参考以下文章