第一種:函數直接執行模式 第二種:對象方法的調用模式 第三種:構造器的調用模式 第四種:call和apply調用模式 ...
第一種:函數直接執行模式
function add(a,b){ console.log(this); return a+b; } add(10,20)//this===window
第二種:對象方法的調用模式
var obj={ name:'aaa', age:20, said:function(){ console.log(this); } } obj.said();//this===obj,此處this指代被調用者
第三種:構造器的調用模式
function School(){ this.said=function(){ console.log(this); } } var nanj=new School(); nanj.said();//對象調用自己的方法,this===nanj,類似上面
第四種:call和apply調用模式
function change(a,b){ this.detial=a*b; console.log(this); } var p={}; change.call(p,4,5);//此處的this===p console.log(p.detial); var q=[]; change.call(q,5,10)//this===q console.log(q.detial); //apply和call一樣的用法,只不過apply第二個參數用數組進行傳遞 var arr=[]; change.apply(arr,[10,10]);//this===arr console.log(arr.detial); var str={}; change.apply(str,[20,20]);//this===str console.log(str.detial);