var obj = { id: "awesome", cool: function coolFn() { console.log(this.id); } }; var id = "not awesome" obj.cool(); // 酷 this指向obj setTimeout(obj.cool, 100); // 不酷 this指向setTimeout
this谁调用 this指向谁
var obj = { id: "awesome", cool: function coolFn() { console.log(this.id); } }; var id = "not awesome" obj.cool(); // 酷 this指向obj setTimeout(obj.cool, 100); // 不酷 this指向setTimeout
this谁调用 this指向谁