JavaScript Tutorial/Object Oriented/this — различия между версиями

Материал из Web эксперт
Перейти к: навигация, поиск
 
м (1 версия)
 
(нет различий)

Текущая версия на 08:24, 26 мая 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);
};