JavaScript Tutorial/Object Oriented/this
Версия от 18:52, 25 мая 2010; (обсуждение)
The this Keyword
The this keyword points to the object that is calling a particular method.
var myHourse = new Object;
myHourse.color = "red";
myHourse.showColor = function () {
alert(this.color);
};