1 function fn(){ 2 alert(this); 3 } 4 fn(); //this===>window 5 oDiv.onclick = fn; //this===> oDiv 6 oDiv.onclick = function(){ 7 fn(); //fn()的this===> window ,fn() 是window调用的 8 }