


Detailed explanation of the use of this in JavaScript_Basic knowledge
We have to remember one sentence: this always points to the object where the function is running! rather than the object in which the function was created. Remember...
This article will analyze where this object is in three situations.
This in ordinary functions
No matter where this is, the first priority is to find the location of the function when it is running.
1 var name="global";
2 function getName(){
3 var name="local";
4 return this.name;
5 };
6 alert(getName());
When this appears in the function getName of the global environment, the runtime position of the function getName is at
alert(getName());
Obviously, the object where the function getName is located is the global object, that is, window, so the home of this must be in window. At this time, this points to the window object, so the this.name returned by getName is actually window.name, so the alert comes out as "global"!
So, when this does not appear in the function of the global environment, but appears in the function of the local environment, where will it fall?
1 var name="global";
2 var twobin={
3 name:"local",
4 getName:function(){
5 return this.name;
6 }
7 };
8 alert( twobin.getName());
The function getName in which this is located is not in the global environment, but in the twobin environment. No matter where this is, you must find the location when the function is running. At this time, the position of the function getName when it is running
alert(twobin. getName());
Obviously, the object where the function getName is located is twobin, so the home of this must be in twobin, that is, pointing to the twobin object, then the this.name returned by getName is actually twobin. name, so the alert comes out as "partial"!
This in closure
Closure is also a troublemaker. This article will not go into details about it for the time being. In short: the so-called closure is to create another function inside a function, and the internal function accesses the external variable.
The prodigal son this is mixed with the ruffian closure, it is obvious that there will never be peace!
1 var name="global";
2 var twobin={
3 name:"local",
4 getName:function(){
5 return function(){
6 return this.name;
7 };
8 }
9 };
10 alert(twobin.getName()());
At this time, this is obviously in trouble, and it is actually anonymous in the getName function Inside the function, the anonymous function calls the variable name, thus forming a closure, that is, this is in the closure.
No matter where this is, be sure to find the location when the function is running. At this time, it cannot be judged based on the runtime position of the function getName, but based on the runtime position of the anonymous function.
function (){
return this.name;
};
Obviously, the object where the anonymous function is located is window, so the home of this must be window, then the this.name returned by the anonymous function is actually window.name, so alert What comes out is the “big picture”!
So, how to make this in twobin in the closure?
var name="global";
var twobin={
name:"local",
getName:function(){
var that=this;
return function(){
That=this is defined in the getName function. At this time, the runtime position of the getName function is
alert(twobin.getName());
then this points to the twobin object, so that also points to the twobin object. If that.name is returned in the anonymous function of the closure, the that.name returned at this time is actually twobin.name, so the "local" can be alerted!
This in call and apply
The only ones that can control this in JavaScript are call and apply.
Call and apply are like this’s parents. They will live wherever they let this live, and they have to obey!
Copy code
The code is as follows:
getName(twobin);
getName .call(twobin);
where this is in the function getName. No matter where this is, you must find the location when the function is running. At this time, the position of the function getName when it is running is
getName(twobin);
Obviously, the object where the function getName is located is window, so the home of this must be in the window, that is, pointing to the window object, then getName returns this. The name is actually window.name, so the alert comes out as "global"!
Then, it’s time to call and apply, because this must listen to their command!
getName.call(twobin);
Among them, call specifies that the home of this is the twobin object, because this is forced to settle only in twobin, then this points to the twobin object at this time, and this.name actually It is twobin.name, so the alert comes out as "partial"!
The prodigal this: always points to the object where the function is running, not the object where the function is created; if it is in an anonymous function or not in any object, then this points to the window object; if Is call or apply, which object it specifies, then this will point to that object!

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

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

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

How to use WebSocket and JavaScript to implement an online speech recognition system Introduction: With the continuous development of technology, speech recognition technology has become an important part of the field of artificial intelligence. The online speech recognition system based on WebSocket and JavaScript has the characteristics of low latency, real-time and cross-platform, and has become a widely used solution. This article will introduce how to use WebSocket and JavaScript to implement an online speech recognition system.

WebSocket and JavaScript: Key technologies for realizing real-time monitoring systems Introduction: With the rapid development of Internet technology, real-time monitoring systems have been widely used in various fields. One of the key technologies to achieve real-time monitoring is the combination of WebSocket and JavaScript. This article will introduce the application of WebSocket and JavaScript in real-time monitoring systems, give code examples, and explain their implementation principles in detail. 1. WebSocket technology

How to use WebSocket and JavaScript to implement an online reservation system. In today's digital era, more and more businesses and services need to provide online reservation functions. It is crucial to implement an efficient and real-time online reservation system. This article will introduce how to use WebSocket and JavaScript to implement an online reservation system, and provide specific code examples. 1. What is WebSocket? WebSocket is a full-duplex method on a single TCP connection.

Introduction to how to use JavaScript and WebSocket to implement a real-time online ordering system: With the popularity of the Internet and the advancement of technology, more and more restaurants have begun to provide online ordering services. In order to implement a real-time online ordering system, we can use JavaScript and WebSocket technology. WebSocket is a full-duplex communication protocol based on the TCP protocol, which can realize real-time two-way communication between the client and the server. In the real-time online ordering system, when the user selects dishes and places an order

JavaScript and WebSocket: Building an efficient real-time weather forecast system Introduction: Today, the accuracy of weather forecasts is of great significance to daily life and decision-making. As technology develops, we can provide more accurate and reliable weather forecasts by obtaining weather data in real time. In this article, we will learn how to use JavaScript and WebSocket technology to build an efficient real-time weather forecast system. This article will demonstrate the implementation process through specific code examples. We

JavaScript tutorial: How to get HTTP status code, specific code examples are required. Preface: In web development, data interaction with the server is often involved. When communicating with the server, we often need to obtain the returned HTTP status code to determine whether the operation is successful, and perform corresponding processing based on different status codes. This article will teach you how to use JavaScript to obtain HTTP status codes and provide some practical code examples. Using XMLHttpRequest

Usage: In JavaScript, the insertBefore() method is used to insert a new node in the DOM tree. This method requires two parameters: the new node to be inserted and the reference node (that is, the node where the new node will be inserted).

Introduction to the method of obtaining HTTP status code in JavaScript: In front-end development, we often need to deal with the interaction with the back-end interface, and HTTP status code is a very important part of it. Understanding and obtaining HTTP status codes helps us better handle the data returned by the interface. This article will introduce how to use JavaScript to obtain HTTP status codes and provide specific code examples. 1. What is HTTP status code? HTTP status code means that when the browser initiates a request to the server, the service
