function person() {
this.name = 'anna';
this.printThis = function(){
console.log(this) // Window
};
this.handle = function(method){
method();
};
}
var p = new person();
p.handle(p.printThis);
console.log(this)中的 this 不是应该指向 p 吗?