这个问题其实来自分析jQuery源码的时候,看到里面使用了var ret = jQuery.merge(this.constructor(), elems );
,里面this.constructor()返回的是init方法创建的空的实例对象。因此对其中this的指向产生疑惑。
以下为试验代码:
function Person() {
this.name = 'ddadaa';
console.log(this);
}
var p1 = new Person();
p1.constructor(); // Person {name: "ddadaa"}
var p2 = p1.constructor;
p2(); //打印的是window
此处为什么直接调用constructor(),里面的this的指向就发生了改变,并且自动创建了一个新的对象?是不是constructor()方法的内部实现对此有所影响?
这个和
constructor()
方法的内部实现没有什么关系,其实就是函数内this指向的问题。当函数作为对象的属性调用的时候,
this
指向这个对象;当函数直接调用的时候,在非严格模式下,
this
指向window
;p1.constructor
指向的就是Person
函数,当调用p1.constructor();
时,Person
是作为p1
的属性调用的,所以this
指向p1
;当调用var p2 = p1.constructor;p2();
时,其实就相当于直接调用Person();
,所以this
指向window
。