誰調用了函數,this就指向誰 >>> this指向的永遠只可能是對象!!! >>> this指向誰,永遠不取決於this寫在哪,而是取決於函數在哪調用!!! >>> this指向的對象,我們稱之為函數的上下文 context,也叫做函數的調用者 this指向的規律(浩哥五條黃金定律!!!)this ...
誰調用了函數,this就指向誰
>>> this指向的永遠只可能是對象!!!
>>> this指向誰,永遠不取決於this寫在哪,而是取決於函數在哪調用!!!
>>> this指向的對象,我們稱之為函數的上下文 context,也叫做函數的調用者
this指向的規律(浩哥五條黃金定律!!!)
this指向的情況,取決於函數調用的方式有哪些:
① 通過 函數名() 直接調用 ---> this指向window
function func(){
console.log(this);
}
func();//this指向window
② 通過 對象.函數名() 調用 ---> this指向這個對象
//狹義對象
var obj = {};
obj.func1 = func;
obj.func1();//this指向obj
//廣義對象
document.getElementById("111").onclick = func;//this指向div
③ 函數作為數組的一個元素,通過數組下標調用 ---> this指向數組
var arr = [func,1,2,3];
arr[0]();//this指向arr
④ 作為window內置函數的回調函數調用 ---> this指向window
setTimeout(func,1000);//this指向window
⑤ 函數作為構造函數,用new關鍵字調用 ---> this指向新new出的對象
var obg = new func();//this指向new出的新obg