this的不同场景使用,所代表的含义 2019-11-27 本文已影响0人 誩先生 1、this在字面量对象中表示的就是字面量对象本身 2、this在构造函数中表示的就是构造函数本身 3、this在dom事件回调函数中表示的就是发生事件的dom元素 4、this在定时器回调函数中表示的就是window 5、this在全局中表示的就是window 6、this在普通函数中表示的就是window 7、this在事件函数中表示的就是触发当前事件的元素