本页总览this-closurethis 绑定与闭包 ToC this 绑定规则 显式绑定与箭头函数 闭包与常见坑 this 绑定规则 默认绑定(非严格模式):顶层或普通函数中 this === window/globalThis;严格模式下为 undefined。 隐式绑定:作为对象方法调用,obj.m() 中 this === obj; 显式绑定:call/apply/bind; new 绑定:构造调用时绑定到新创建对象。 显式绑定与箭头函数