Javascript整理-this

103 阅读1分钟
  • this 永远指向最后调用它的那个对象
    • 普通函数中 this 的指向,是 this 执行时的上下文
    • 箭头函数中 this 的指向,是 this 定义时的上下文
  • 全局执行上下文中的 this
  • 函数执行上下文中的 this
    • 通过 call/bind/apply 改变 this 指向
    • 通过对象调用方法设置
    • 通过构造函数设置
  • React 中 this 问题
  • 题目