本文档基于 CC协议(Creative Commons Share-Alike License)发布,是developer.mozilla.com, www.mozref.comwww.aptana.com共同劳动的成果。

this

Refers to the calling object of a property.

Syntax

 this[.propertyName] 

Example


function Dog(breed) {
   this.breed = breed;
}
Dog.prototype.getBreed = function() {
   return this.breed;
}
var foo = new Dog('Lab');
alert(foo.getBreed()); //Alerts "Lab".