如何理解 JavaScript 中的 this 关键字

2024-11-20 07:10:22
推荐回答(1个)
回答(1):

说通俗点,this指向当前事件的调用者。举例如下:
var someone = {
name: "Bob",
showName: function(){
alert(this.name);
}
};

var other = {
name: "Tom",
showName: someone.showName
}

other.showName();  //Tom

this关键字虽然是在someone.showName中声明的,但运行的时候是other.showName,所以this指向other.showName函数的当前对象,即other,故最后alert出来的是other.name。