this
用来返回“当前”对象。但在不同的场景,this 代表的对象并不相同。
如果在 JavaScript 的“主程序”中(不在任何 function 中,不在任何事件处理程序中)使用 this,它就代表 window 对象;
如果在 with 语句块中使用 this,它就代表 with 所指定的对象;
如果在事件处理程序中使用 this,它就代表发生事件的对象。
Sorry, the comment form is closed at this time.
this
用来返回“当前”对象。但在不同的场景,this 代表的对象并不相同。
如果在 JavaScript 的“主程序”中(不在任何 function 中,不在任何事件处理程序中)使用 this,它就代表 window 对象;
如果在 with 语句块中使用 this,它就代表 with 所指定的对象;
如果在事件处理程序中使用 this,它就代表发生事件的对象。
Sorry, the comment form is closed at this time.
最近正在研究这个,谢谢分享。