判定this
- new绑定:新建对象;
var bar = new foo(); - 明确绑定(call、apply,bind):指定对象;
var bar = foo.call(obj) - 隐含绑定:环境对象(或容器对象);
var bar = obj2.foo(); - 默认绑定: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