javascript中的this含義非常豐富,它可以是全局對象,當前對象或者是任意對象,這都取決于函數的調用方式。函數有以下幾種調用方式:作為對象方法調用、作為函數調用、作為構造函數調用、apply或call調用。
對象方法調用
作為對象方法調用的時候,this會被綁定到該對象。
var point = {
x : 0,
y : 0,
moveTo : function(x, y) {
this.x = this.x + x;
this.y = this.y + y;
}
};
point.moveTo(1, 1)//this 綁定到當前對象,即 point 對象