js中判定this的规则

时间:2021-02-07 13:08:25

判定this

  1. new绑定:新建对象;

    var bar = new foo();
  2. 明确绑定(call、apply,bind):指定对象;

    var bar = foo.call(obj)
  3. 隐含绑定:环境对象(或容器对象);

    var bar = obj2.foo();
  4. 默认绑定:strict模式是undefined,否则是全局对象(浏览器是windows,node环境是global)

    var bar = foo();

被忽略的 this

如果你传递 null 或 undefined 作为 call、apply 或 bind 的 this 绑定参数,那么这些值会被忽略掉,取而代之的是 默认绑定 规则将适用于这个调用。

function foo() {
console.log( this.a );
} var a = 2; foo.call( null ); // 2