Skip to content
Everything for Frontend
Search
K
Main Navigation
Everything
Road map 2023
Github
GitHub
Appearance
GitHub
Menu
Return to top
On this page
Table of Contents for current page
this指向的问题
箭头函数的
this
指向上一层作用域
普通函数中的
this
指向
window
,严格模式下为
undefined
当函数作为对象的方法属性(Method),并且被对象调用时,this指向该对象
构造函数中的this指向创建的实例对象
call/apply/bind方法调用的函数,this指向call/apply/bind方法的第一个参数