最近在学习javascript ,被js中的this关键字搞得晕头转向,都不知道这个东西到底是干什么的,不同的地方所指的对象又不一样。在查询了很多的资料以后,终于有了一些眉目了。
this的定义:在javascript中,上下文对象就是this指针,即被调用函数所处的环境,上下文对象的作用是一个函数内部引用调用它的对象本身。
上面就是javascript中this关键字的定义,单纯的理解来说还是很好理解的,但是真正到用的时候发现又是另外一回事了。
说到this的用法,就要谈到到this的作用域,this的用法很简单,难的就是this的作用域。this的作用域有和js中的函数调用模式有着密切的联系。
js中有四种函数调用的模式,分别是:方法调用模式、函数调用模式、构造器调用模式和apply调用模式。这四种模式在this关键字的初始化上面有很大的差异。
方法调用模式 :当一个函数被保存为对象的一个属性时,我们称之它为该对象的一个方法,那么this被绑定到该对象上。
var myObject={ <span style="white-space:pre"> </span>name : "myObject" , <span style="white-space:pre"> </span>value : 0 , <span style="white-space:pre"> </span>increment : function(num){ <span style="white-space:pre"> </span>this.value += typeof(num) === 'number' ? num : 0; <span style="white-space:pre"> </span>} , <span style="white-space:pre"> </span>toString : function(){ <span style="white-space:pre"> </span>return '[Object:'+this.name+' {value:'+this.value+'}]'; <span style="white-space:pre"> </span>} } alert(myObject);//[Object:myObject {value:0}]
函数调用模式 :当一个函数并非一个对象的函数时,那么它被当作一个函数来调用,this被绑定到全局对象上。这是语言设计的一个错误。倘若语言设计正确,当内部函数调用时,this应该仍然绑定到外部函数的this变量上。如:
var myObject={ <span style="white-space:pre"> </span>name : "myObject" , <span style="white-space:pre"> </span>value : 0 , <span style="white-space:pre"> </span>increment : function(num){ <span style="white-space:pre"> </span>this.value += typeof(num) === 'number' ? num : 0; <span style="white-space:pre"> </span>} , <span style="white-space:pre"> </span>toString : function(){ <span style="white-space:pre"> </span>return '[Object:'+this.name+' {value:'+this.value+'}]'; <span style="white-space:pre"> </span>}, <span style="white-space:pre"> </span>getInfo:function(){ <span style="white-space:pre"> </span>return (function(){ <span style="white-space:pre"> </span>return this.toString();//内部匿名函数中this指向了全局对象window <span style="white-space:pre"> </span>})(); <span style="white-space:pre"> </span>} <span style="white-space:pre"> </span>} <span style="white-space:pre"> </span>alert(myObject.getInfo());//[object Window]
当然幸运的是,有一个很容易的解决方案:定义一个变量并给它赋值为this,那么内部函数通过该变量访问到指向该对象的this,如:
var myObject={ <span style="white-space:pre"> </span>name : "myObject" , <span style="white-space:pre"> </span>value : 0 , <span style="white-space:pre"> </span>increment : function(num){ <span style="white-space:pre"> </span>this.value += typeof(num) === 'number' ? num : 0; <span style="white-space:pre"> </span>} , <span style="white-space:pre"> </span>toString : function(){ <span style="white-space:pre"> </span>return '[Object:'+this.name+' {value:'+this.value+'}]'; <span style="white-space:pre"> </span>}, <span style="white-space:pre"> </span>getInfo:function(){ <span style="white-space:pre"> </span>var self=this; <span style="white-space:pre"> </span>return (function(){ <span style="white-space:pre"> </span>return self.toString();//通过变量self指向myObject对象 <span style="white-space:pre"> </span>})(); <span style="white-space:pre"> </span>} } <span style="white-space:pre"> </span>alert(myObject.getInfo());//[Object:myObject {value:0}]
构造器调用模式 :JavaScript是一门基于原型继承的语言。这意味着对象可以直接从其他对象继承属性。该语言是无类别的。
如果一个函数前面带上new来调用,那么将创建一个隐藏连接到该函数的prototype成员的新对象,同时this将会被绑定到构造函数的实例上。
function MyObject(name){ <span style="white-space:pre"> </span>this.name=name || 'MyObject'; <span style="white-space:pre"> </span>this.value=0; <span style="white-space:pre"> </span>this.increment=function(num){ <span style="white-space:pre"> </span>this.value += typeof(num) === 'number' ? num : 0; <span style="white-space:pre"> </span>}; <span style="white-space:pre"> </span>this.toString=function(){ <span style="white-space:pre"> </span>return '[Object:'+this.name+' {value:'+this.value+'}]'; <span style="white-space:pre"> </span>} <span style="white-space:pre"> </span>this.target=this; } <span style="white-space:pre"> </span>MyObject.prototype.getInfo=function(){ <span style="white-space:pre"> </span>return this.toString(); } <span style="white-space:pre"> </span>/* <span style="white-space:pre"> </span>同时创建一个MyObject.prototype对象,myObject继承了MyObject.prototype的所有的属性, <span style="white-space:pre"> </span>this绑定到了MyObject的实例上 <span style="white-space:pre"> </span>*/ <span style="white-space:pre"> </span>var myObject=new MyObject(); <span style="white-space:pre"> </span>var otherObject=new MyObject(); <span style="white-space:pre"> </span>//alert(myObject.target===myObject);//ture <span style="white-space:pre"> </span>//alert(myObject.target.getInfo());//[Object:MyObject {value:0}] <span style="white-space:pre"> </span>myObject.increment(10); <span style="white-space:pre"> </span>otherObject.increment(20); <span style="white-space:pre"> </span>alert(myObject.value);//10 <span style="white-space:pre"> </span>alert(otherObject.value);//20
Apply 调用模式 :JavaScript是一门函数式的面向对象编程语言,所以函数可以拥有方法。 函数的apply方法,如同该对象拥有此方法,使该对象拥有此方法。此时this指向该对象。 apply接收两个参数,第一个是要绑定的对象(this指向的对象),第二个是参数数组.
function MyObject(name){ <span style="white-space:pre"> </span>this.name=name || 'MyObject'; <span style="white-space:pre"> </span>this.value=0; <span style="white-space:pre"> </span>this.increment=function(num){ <span style="white-space:pre"> </span>this.value += typeof(num) === 'number' ? num : 0; <span style="white-space:pre"> </span>}; <span style="white-space:pre"> </span>this.toString=function(){ <span style="white-space:pre"> </span>return '[Object:'+this.name+' {value:'+this.value+'}]'; <span style="white-space:pre"> </span>} <span style="white-space:pre"> </span>this.target=this; } <span style="white-space:pre"> </span>function getInfo(){ <span style="white-space:pre"> </span>return this.toString(); <span style="white-space:pre"> </span>} <span style="white-space:pre"> </span>var myObj=new MyObject(); <span style="white-space:pre"> </span>alert(getInfo.apply(myObj));//[Object:MyObject {value:0}],this指向myObj <span style="white-space:pre"> </span>alert(getInfo.apply(window));//[object Window],this指向window
暂时先叙述到这里,有时间,继续完善