标签:
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 };
标签:
原文地址:http://www.cnblogs.com/imguo/p/5762986.html