欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

详解JavaScript中this的指向问题

程序员文章站 2022-05-31 18:25:35
this是面向对象语言中一个重要的关键字,理解并掌握该关键字的使用对于我们代码的健壮性及优美性至关重要。而javascript的this又有区别于java、c#等纯面向对象...

this是面向对象语言中一个重要的关键字,理解并掌握该关键字的使用对于我们代码的健壮性及优美性至关重要。而javascript的this又有区别于java、c#等纯面向对象的语言,这使得this更加扑朔迷离,让人迷惑。

this使用到的情况:

1. 纯函数

2. 对象方法调用

3. 使用new调用构造函数

4. 内部函数

5. 使用call / apply

6.事件绑定

1. 纯函数

var name = 'this is window'; //定义window的name属性 
function getname(){ 
 console.log(this); //控制台输出: window //this指向的是全局对象--window对象 
 console.log(this.name); //控制台输出: this is window / 
} 
getname(); 

运行结果分析:纯函数中的this均指向了全局对象,即window。

2. 对象方法调用

var name = 'this is window'; //定义window的name属性,看this.name是否会调用到 
var testobj = { 
 name:'this is testobj', 
 getname:function(){ 
 console.log(this); //控制台输出:testobj //this指向的是testobj对象 
 console.log(this.name); //控制台输出: this is testobj 
 } 
} 
testobj.getname();

运行结果分析:被调用方法中this均指向了调用该方法的对象。

3.  使用new调用构造函数

function getobj(){ 
 console.log(this); //控制台输出: getobj{} //this指向的新创建的getobj对象 
} 
new getobj();

运行结果分析:new 构造函数中的this指向新生成的对象。

4. 内部函数

var name = "this is window"; //定义window的name属性,看this.name是否会调用到 
var testobj = { 
 name : "this is testobj", 
 getname:function(){ 
 //var self = this; //临时保存this对象 
 var handle = function(){ 
 console.log(this); //控制台输出: window //this指向的是全局对象--window对象 
 console.log(this.name); //控制台输出: this is window 
 //console.log(self); //这样可以获取到的this即指向testobj对象 
 } 
 handle(); 
 } 
} 
testobj.getname();

运行结果分析:内部函数中的this仍然指向的是全局对象,即window。这里普遍被认为是javascript语言的设计错误,因为没有人想让内部函数中的this指向全局对象。一般的处理方式是将this作为变量保存下来,一般约定为that或者self,如上述代码所示。

5. 使用call / apply

var name = 'this is window'; //定义window的name属性,看this.name是否会调用到 
var testobj1 = { 
 name : 'this is testobj1', 
 getname:function(){ 
 console.log(this); //控制台输出: testobj2 //this指向的是testobj2对象 
 console.log(this.name); //控制台输出: this is testobj2 
 } 
}
var testobj2 = { 
 name: 'this is testobj2' 
}
testobj1.getname.apply(testobj2); 
testobj1.getname.call(testobj2);

note:apply和call类似,只是两者的第2个参数不同:

[1] call( thisarg [,arg1,arg2,… ] );  // 第2个参数使用参数列表:arg1,arg2,...

[2] apply(thisarg [,argarray] );     //第2个参数使用 参数数组:argarray

运行结果分析:使用call / apply  的函数里面的this指向绑定的对象。

6. 事件绑定

事件方法中的this应该是最容易让人产生疑惑的地方,大部分的出错都源于此。

//页面element上进行绑定 
 <script type="text/javascript"> 
 function btclick(){ 
 console.log(this); //控制台输出: window //this指向的是全局对象--window对象 
 } 
 </script> 
 <body> 
 <button id="btn" onclick="btclick();" >点击</button> 
 </body> 
//js中绑定方式(1) 
 <body> 
 <button id="btn">点击</button> 
 </body> 
 <script type="text/javascript"> 
 function btclick(){ 
 console.log(this); //控制台输出:<button id="btn">点击</button> //this指向的是element按钮对象 
 }
 document.getelementbyid("btn").onclick = btclick; 
 document.getelementbyid("btn").onclick(); //默认点击
 </script>
//js中绑定方式(2) 
<body> 
 <button id="btn">点击</button> 
 </body> 
 <script type="text/javascript"> 
 document.getelementbyid("btn").onclick = function(){ 
 console.log(this); //控制台输出:<button id="btn">点击</button> //this指向的是element按钮对象 
 } 
 document.getelementbyid("btn").onclick(); 
 </script>
//js中绑定方式(3) 
<body> 
 <button id="btn">点击</button> 
 </body> 
 <script type="text/javascript"> 
 function btclick(){ 
 console.log(this); 
 }
 document.getelementbyid("btn").addeventlistener('click',btclick); //控制台输出:<button id="btn">点击</button> //this指向的是element按钮对象把函数(方法)用在事件处理的时候。 
 document.getelementbyid("btn").attachevent('onclick',btclick); //ie使用,控制台输出: window //this指向的是全局对象--window对象 
 </script>

运行结果分析:以上2种常用事件绑定方法,在页面element上的进行事件绑定(onclick="btclick();"),this指向的是全局对象;而在js中进行绑定,除了attachevent绑定的事件方法(this指向的是全局对象)外,this指向的是绑定事件的elment元素。

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,同时也希望多多支持!