this 语句
更新:2007 年 11 月
指当前的对象。
this.property
参数
- property
必选。当前对象的属性的标识符。
备注
this 关键字通常用于对象构造函数,用来指当前对象。
示例
在下面的示例中,this 指的是新创建的 Car 对象,并给三个属性赋值:
function Car(color, make, model){
this.color = color;
this.make = make;
this.model = model;
}
对于 JScript 的客户版本,如果在其他任何对象的上下文之外使用 this,则它指的是 window 对象。