this

什么是this

this是js中的一个关键字。它是函数运行时自动生成的一个内部对象,代表指向,只能在函数内部使用。

函数被直接调用,this指向window。

1 function fn(){
2     console.log(this);//window
3 }
4 fn();

当函数被事件调用,并且是以赋值的方式出现,谁调用了函数,this就指向谁 。

1 document.onclick=function(){
2     console.log(this);//document
3 };

 

posted @ 2016-08-11 22:28  imguo  阅读(106)  评论(0编辑  收藏  举报