The meaning of this in JavaScript is very rich. It can be the global object, the current object or any object, depending on how the function is called. Functions can be called in the following ways: as an object method, as a function, as a constructor, apply or call.
Object method call
When called as an object method, this will be bound to the object.
var point = { x : 0, y : 0, moveTo : function(x, y) { this.x = this.x + x; this.y = this.y + y; } }; point.moveTo(1, 1)//this 绑定到当前对象,即 point 对象
I want to emphasize one thing here, that is, this gets the corresponding value when the function is executed, not when the function is defined. Even if it is an object method call, if the function attribute of the method is passed into another scope in the form of a function name, the pointer of this will be changed. Let me give you an example:
var a = { aa : 0, bb : 0, fun : function(x,y){ this.aa = this.aa + x; this.bb = this.bb + y; } }; var aa = 1; var b = { aa:0, bb:0, fun : function(){return this.aa;} } a.fun(3,2); document.write(a.aa);//3,this指向对象本身 document.write(b.fun());//0,this指向对象本身 (function(aa){//注意传入的是函数,而不是函数执行的结果 var c = aa(); document.write(c);//1 , 由于fun在该处执行,导致this不再指向对象本身,而是这里的window })(b.fun);
So you can understand. This can be a confusing place.
Function call
The function can also be called directly. At this time, this is bound to the global object.
var x = 1; function test(){ this.x = 0; } test(); alert(x); //0
But this will cause some problems, that is, for functions defined inside the function, this will also point to the global world, which is exactly the opposite of what we want. The code is as follows:
var point = { x : 0, y : 0, moveTo : function(x, y) { // 内部函数 var moveX = function(x) { this.x = x;//this 绑定到了全局 }; // 内部函数 var moveY = function(y) { this.y = y;//this 绑定到了全局 }; moveX(x); moveY(y); } }; point.moveTo(1, 1); point.x; //==>0 point.y; //==>0 x; //==>1 y; //==>1
We will find that not only the movement effect we want is not completed, but there will be two more global variables. So how to solve it? Just save this to a variable when entering a function within a function, and then use the variable. The code is as follows:
var point = { x : 0, y : 0, moveTo : function(x, y) { var that = this; // 内部函数 var moveX = function(x) { that.x = x; }; // 内部函数 var moveY = function(y) { that.y = y; } moveX(x); moveY(y); } }; point.moveTo(1, 1); point.x; //==>1 point.y; //==>1
Constructor call
When you create your own constructor in JavaScript, you can use this to point to the newly created object. This will prevent this in the function from pointing to the global world.
var x = 2; function test(){ this.x = 1; } var o = new test(); alert(x); //2
apply or call
These two methods can switch the context of function execution, that is, change the object bound to this. Apply and call are similar. The difference is that when passing in parameters, one requirement is an array and the other requirement is that they are passed in separately. So we take apply as an example:
<pre name="code" class="html">var name = "window"; var someone = { name: "Bob", showName: function(){ alert(this.name); } }; var other = { name: "Tom" }; someone.showName(); //Bob someone.showName.apply(); //window someone.showName.apply(other); //Tom
You can see that when accessing the method in the object normally, this points to the object. After using apply, when apply has no parameters, the current object of this is the global object. When apply has parameters, the current object of this is the parameter.
Arrow function call
Something needs to be added here, that is, the arrow function in the next generation javascript standard ES6 this is always Points to this when the function is defined, not when it is executed. Let's understand through an example:
var o = { x : 1, func : function() { console.log(this.x) }, test : function() { setTimeout(function() { this.func(); }, 100); } }; o.test(); // TypeError : this.func is not a function
The above code will cause an error because the pointer of this changes from o to the global. We need to modify the above code as follows:
var o = { x : 1, func : function() { console.log(this.x) }, test : function() { var _this = this; setTimeout(function() { _this.func(); }, 100); } }; o.test();
Just use this externally saved in advance. Arrow functions can be used here. As we just said, the this of the arrow function always points to the this# when the function is defined. ##, rather than execution time . So we modify the above code as follows:
var o = { x : 1, func : function() { console.log(this.x) }, test : function() { setTimeout(() => { this.func() }, 100); } }; o.test();This time this will point to o. What we also need to pay attention to is that this will not change the object pointed to. We know that call and apply can change this. Pointing, but is invalid in arrow functions.
var x = 1, o = { x : 10, test : () => this.x }; o.test(); // 1 o.test.call(o); // 依然是1In this way, you can understand the difference between this binding object in various situations.
The above is the detailed content of Detailed explanation of JavaScript this pointer sample code. For more information, please follow other related articles on the PHP Chinese website!

去掉重复并排序的方法:1、使用“Array.from(new Set(arr))”或者“[…new Set(arr)]”语句,去掉数组中的重复元素,返回去重后的新数组;2、利用sort()对去重数组进行排序,语法“去重数组.sort()”。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于Symbol类型、隐藏属性及全局注册表的相关问题,包括了Symbol类型的描述、Symbol不会隐式转字符串等问题,下面一起来看一下,希望对大家有帮助。

怎么制作文字轮播与图片轮播?大家第一想到的是不是利用js,其实利用纯CSS也能实现文字轮播与图片轮播,下面来看看实现方法,希望对大家有所帮助!

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于对象的构造函数和new操作符,构造函数是所有对象的成员方法中,最早被调用的那个,下面一起来看一下吧,希望对大家有帮助。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于面向对象的相关问题,包括了属性描述符、数据描述符、存取描述符等等内容,下面一起来看一下,希望对大家有帮助。

方法:1、利用“点击元素对象.unbind("click");”方法,该方法可以移除被选元素的事件处理程序;2、利用“点击元素对象.off("click");”方法,该方法可以移除通过on()方法添加的事件处理程序。

本篇文章给大家带来了关于JavaScript的相关知识,其中主要介绍了关于BOM操作的相关问题,包括了window对象的常见事件、JavaScript执行机制等等相关内容,下面一起来看一下,希望对大家有帮助。

foreach不是es6的方法。foreach是es3中一个遍历数组的方法,可以调用数组的每个元素,并将元素传给回调函数进行处理,语法“array.forEach(function(当前元素,索引,数组){...})”;该方法不处理空数组。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MantisBT
Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Atom editor mac version download
The most popular open source editor

Dreamweaver Mac version
Visual web development tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 English version
Recommended: Win version, supports code prompts!
