this的指向

 
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 }

 





 

posted @ 2014-12-08 18:02  vivi.wang  阅读(85)  评论(0编辑  收藏  举报