This关键字的一些更新的理解

this 是 Javascript 中一个非常重要的关键字,正确的使用this能够使我们的程序效率得到提升。之前,对于 this 的认识还存在一些误区,今天看了一篇文章之后又有了一些深入的了解。

this 的所有者。

一般情况下,this是指向正在执行的函数本身,或者是,指向函数所属的对象。如

1
2
3
function dosomething(){
this.style.color = 'red';
}

函数执行时,this指向的就是window对象。而:

1
2
3
var dosomething = function(){
this.style.color = 'red';
}

this 是指向 dosomething 这个对象的;

很不幸,window对象没有style属性,所以这个dosomething这个函数直接执行就会导致错误,我们如果想正确应用this,我们就需要将函数复制到对象的属性上去。

例如:element.onclick = dosomething;

总结一下,通过复制正确使用this的例子有:

1
2
3
4
5
element.onclick = dosomething;
element.addEventListener('click',dosomething,false);

element.onclick = function(){ this.style.color = 'red'; };
<element onclick='javascript:this.style.color = red;' />

通过直接引用使用this的例子:

1
2
3
4
element.onclick = function(){ dosomething(); };

element.attachEvent('onclick',dosomething);
<element onclick = "dosomething();" />

这样的引用,this 都会被指向 window 对象而导致,执行失败,所以在平时的应用中是要引起注意的。

cocowool

A FULL STACK DREAMER!