search
HomeWeb Front-endJS TutorialThoroughly understand the this pointing problem in JavaScript

This article brings you relevant knowledge about this pointer in JavaScript. The this keyword is a very important grammatical point. I hope everyone has to help.

Thoroughly understand the this pointing problem in JavaScript

1. The relationship between context and this

Pass Understanding the context, we can more clearly understand the pointing problem of this

this’s pointing can be seen as the current context

2. General functions

Let us first take an example to see what this is in a function:

let colors = {
    green : "绿色",
    blue : "蓝色",
    showColors : function() {
        console.log("green: " + this.green  + " blue: " + this.blue);
    }}colors.showColors();let show = colors.showColors;show();

Thoroughly understand the this pointing problem in JavaScript
First The first output is green and blue. At this time, the context of the function is colors, so this points to colors
. The second output is undefined and undefined. At this time, the function is called directly with parentheses, and the context It is window. At this time, this points to window

. Therefore, we can see that the context of the function is this is determined by the way the function is called. .

Common function context situation:

  • The object is marked and calls its method function, then the function context is the marked object, thisPoint to this object
    obj.fun(); The context is obj
  • Call the function directly with parentheses, the context is the window object, this points to the window object

For example:

function fun() {
    return this.a + this.b;}var a = 1;var b = 2;let obj = {
    a : 5,
    b : fun(),
    fun : fun}let res = obj.fun();console.log(res);

Thoroughly understand the this pointing problem in JavaScript
The fun() in b in obj is directly called with parentheses, so at this time fun( ) The context is the window object, so this here points to window, b = 1 2 = 3;
The fun() of obj.fun() is called by obj, so its context is obj, so this here points to obj, so res = 5 3 = 8

3. Array/Array-like object

Array/Array-like object enumeration function To make a call, the context is this array/array-like object
, which can be seen as:

数组[下标](); 调用这个函数的上下文对象就是这个数组

Let us understand it through an example:

let arr = [1, 2, 3, function() {
    console.log(this[0]);}];arr[3]();

Thoroughly understand the this pointing problem in JavaScript
Here is the subscript 3 is a function that enumerates the object with index 3 through the array and then executes it, so its context is this array arr

Array-like object:

  • What is an array-like object?

All objects whose key names are natural number sequences (starting from 0) and have length attributes
For example: argumentsThe object is an array-like object Object, which is the actual parameter list of the function

function fun() {
    arguments[3]();}fun(1, 2, 3, function() {
    console.log(this[0]);})

Thoroughly understand the this pointing problem in JavaScript

Here the function fun is called, but at the same time it is called, a function passed to it is executed. That is, the statement arguments[3](), so this[0] will be output. It is an array-like object that enumerates functions for calling, so its context is arguments, this points to it.


4. Immediately execute function

Immediately execute function (IIFE), its context is the window object, so its this points to window

Let us understand it through an example:

var a = 1;let obj = {
    a : 2,
    fun : (function() {
        let a = this.a;
        return function() {
            console.log(a + this.a);
        }
    })()};obj.fun();

Thoroughly understand the this pointing problem in JavaScript
obj.fun()As mentioned above, fun() is called by obj, so here this points to obj;
fun in obj is equal to the return value of an immediately executed function,
is equivalent to

obj = function() {
    console.log(a + this.a);}

where this points to is obj, so this.a = 2;
In this immediate execution function, its context object is window, so its this points to window, so let a = this.a this points to the window object, so a = 1, so its return value has a = 1;
so the final output is 1 2 = 3

5. Timing Timer and delayer calling functions

In the timer and delayer calling functions, the context object is the window object, and this inside points to the window object

Let us Let’s understand it through an example:

let obj = {
    a : 1,
    b : 2,
    fun : function() {
        console.log(this.a + this.b);
    }}var a = 3;var b = 4;setTimeout(obj.fun, 2000);

Thoroughly understand the this pointing problem in JavaScript
The calling function of setTimeout here is obj.fun, which is called by the delayer Yes, it will run after 2s, so its this points to the window object and outputs 7

If we write this, what will be output?

let obj = {
    a : 1,
    b : 2,
    fun : function() {
        console.log(this.a + this.b);
    }}var a = 3;var b = 4;setTimeout(function() {
    obj.fun();}, 2000);

Thoroughly understand the this pointing problem in JavaScript
此时,setTimeout的第一个参数变成一个匿名函数,此时匿名函数的this指向的是 window 对象;
在匿名函数中obj.fun(),这个fun()是由 obj 调用的,所以此时fun里面的this指向的是 obj,所以输出 3

6. 事件处理函数

事件处理函数的上下文是绑定事件的DOM 元素this指向的是DOM 元素
即:

DOM元素.onclick = function() {
    这里的上下文就是 DOM元素,this指向DOM元素};

让我们来通过一个例子来理解一下:

nbsp;html>
    <meta>
    <meta>
    <meta>
    <title>事件处理函数</title>
    <style>
        p {
            width: 200px;
            height: 200px;
            float: left;
            border: 1px solid #000;
            margin-right: 10px;
        }
    </style>
    <p></p>
    <p></p>
    <p></p>

    <script>
        function show() {
            alert("You click " + this.id);
        }

        let box1 = document.getElementById(&#39;box1&#39;);
        let box2 = document.getElementById(&#39;box2&#39;);
        let box3 = document.getElementById(&#39;box3&#39;);

        box1.onclick = show;
        box2.onclick = show;
        box3.onclick = show;
    </script>

当我们点击构建出来的三个盒子时,弹出的对话框中会输出对应的盒子 id
因为事件处理函数中,this指向的就是对应的DOM 元素

【相关推荐:javascript学习教程

The above is the detailed content of Thoroughly understand the this pointing problem in JavaScript. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:CSDN. If there is any infringement, please contact admin@php.cn delete
es6数组怎么去掉重复并且重新排序es6数组怎么去掉重复并且重新排序May 05, 2022 pm 07:08 PM

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

JavaScript的Symbol类型、隐藏属性及全局注册表详解JavaScript的Symbol类型、隐藏属性及全局注册表详解Jun 02, 2022 am 11:50 AM

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

原来利用纯CSS也能实现文字轮播与图片轮播!原来利用纯CSS也能实现文字轮播与图片轮播!Jun 10, 2022 pm 01:00 PM

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

JavaScript对象的构造函数和new操作符(实例详解)JavaScript对象的构造函数和new操作符(实例详解)May 10, 2022 pm 06:16 PM

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

JavaScript面向对象详细解析之属性描述符JavaScript面向对象详细解析之属性描述符May 27, 2022 pm 05:29 PM

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

javascript怎么移除元素点击事件javascript怎么移除元素点击事件Apr 11, 2022 pm 04:51 PM

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

整理总结JavaScript常见的BOM操作整理总结JavaScript常见的BOM操作Jun 01, 2022 am 11:43 AM

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

foreach是es6里的吗foreach是es6里的吗May 05, 2022 pm 05:59 PM

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

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
3 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!