this 语句 指当前对象。
this.property 必选的 property 参数指的是对象的属性。
this 关键字通常在对象的 构造函数中使用,用来引用对象。
示例
在下面示例中,this 指的是新创建的 Car 对象,并给三个属性赋值。
function Car(color, make, model){
this.color = color;
this.make = make;
this.model = model;
}
对于 JScript 的客户版本,如果在其他所有对象的上下文之外使用 this,则它指的是 window 对象。
简单点说,如果在函数里面,this表示当前函数;
如果触发了事件,比如onclick,那么this表示当前触发事件的对象
posted on 2006-07-19 11:18
fish的Blog 阅读(312)
评论(0) 编辑 收藏 所属分类:
JavaScript