this 关键字详解

    1. 方法中的 this ,指向调用方法的对象
    1. 全局环境下指向全局对象
    1. 全局函数中的 this ,指向全局对象
    1. 内部函数中的 this ,指向全局对象
    1. 事件中的 this ,指向触发事件的 DOM对象
    1. 构造函数中的 this,指向 new 创建的对象
    1. 箭头函数中的 this,指向定义函数上下文地址的 this

你可能感兴趣的:(前端)