1、this关键字只会出现在函数中,谁调用这个函数,那么这个 this 就指向谁
2、在方法中 this 指向的是所有者对象
3、单独情况下 this 指的是全局对象----》window
4、在函数中 this 指的是全局对象-------》window
5、在函数中 ,严格模式下 this 是 undefind
6、在事件中 this 指向的是接收事件的元素
1、this关键字只会出现在函数中,谁调用这个函数,那么这个 this 就指向谁
2、在方法中 this 指向的是所有者对象
3、单独情况下 this 指的是全局对象----》window
4、在函数中 this 指的是全局对象-------》window
5、在函数中 ,严格模式下 this 是 undefind
6、在事件中 this 指向的是接收事件的元素
本文标题:this 关键字的理解
本文链接:https://www.haomeiwen.com/subject/hfaaectx.html
网友评论