The content shared with you in this article is about further understanding of js closures. The content is very good. Friends in need can refer to it.
The concept of closure has been confusing to me since I started learning JS a few months ago
I understood it before, but then I didn’t use it for a long time Just forgot
Closure: In layman’s terms, what most people accept is that a function has the right to use local variables in another function
I see a lot of differences
Use the simplest code to express
<span style="font-size: 14px;">function out(){<br/><br/>var age=21;<br/><br/>function inner(){<br/> <br/> console.log(age);<br/><br/>}<br/><br/>return inner;<br/><br/>}<br/><br/>var fn=out();<br/> fn(); //22</span>
Very consistent with the concept
I think closure is reflecting the scope
The inner function is defined inside the out function
So console(age);
will use the variable search mechanism. First, search within the scope of your own (inner) function. If not found, go to Find
in the out function scope and then output. If not found in out, it will look for
in a larger scope. Until the scope of the window, the lower-level scope can be accessed upwards, but the upper-level scope cannot be accessed downwards
Scope refers to
{ }
And JS does not have block-level scope
for(var i=0;i
console.log(i);// 1 2 3 4 5
}
cosole.log(i );//5
i will not be destroyed just because the for loop is out.
This should be noted
Okay, I talked about a little bit about scope. Now back to closures
The core of closures is return. Just look at the code and you will know.
My understanding is that return returns the function body of inner and the scope that inner can access!
So inner can be accessed anywhere age
Example:
<span style="font-size: 14px;">function test(){<br/> var age=23;<br/> var fn=out();<br/> fn(); //21<br/> <br/> }<br/> <br/> test();//21</span>
It gets 21 instead of 22 because the function body and scope are returned together Then the nearest scope is the out function scope.
Even if age is defined in the test function, it cannot be overwritten because the existing scopes are different
It returns the scope, so it accesses all the variables in that scope and has nothing to do with the scope where your function is now.
Closure is actually a This phenomenon is that everyone who plays DNF is painting pictures and selling materials to make money. This phenomenon is called moving bricks
To sum up: it has to do with the scope of the function you define, and the role of the function you execute. Domain-independent
Contrary to this, this has nothing to do with definition time and is related to execution time. Compare memory
So if you don’t understand it well Closure
Then you can understand it like me
What is returned is the function itself and the scope that the function can access
Give one commonly used one
Closure Tab bar switching
<span style="font-size: 14px;"><!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="Generator" content="EditPlus®"> <meta name="Author" content=""> <meta name="Keywords" content=""> <meta name="Description" content=""> <title>Document</title> <style type="text/css"> *{margin:0;padding:0<span style="font-size: 12px; color: rgb(0, 0, 0);">;} .box{ width:140px; height:18px; position:relative; padding:6px 20px; margin:50px auto; background:#ff6666; } .box ul{ list</span>-<span style="font-size: 12px; color: rgb(0, 0, 0);">style:none; } .box li{ width:18px; height:18px; background:#ff3300; line</span>-<span style="font-size: 12px; color: rgb(0, 0, 0);">height:18px; text</span>-<span style="font-size: 12px; color: rgb(0, 0, 0);">align:center; </span><span style="font-size: 12px; color: rgb(0, 0, 255);">float</span><span style="font-size: 12px; color: rgb(0, 0, 0);">:left; margin</span>-<span style="font-size: 12px; color: rgb(0, 0, 0);">right:5px; cursor:pointer; } .current{ background:#ffccff</span>!<span style="font-size: 12px; color: rgb(0, 0, 0);">important; } </span></style> </head> <body> <p class="box"> <ul> <li>1</li> <li>2</li> <li>3</li> <li>4</li> <li>5</li> <li>6</li> </ul> </p> <script type="text/javascript"> <br/><span style="font-size: 12px; color: rgb(0, 0, 255);">function</span><span style="font-size: 12px; color: rgb(0, 0, 0);"> $(name){ <br/> <br/></span><span style="font-size: 12px; color: rgb(0, 0, 255);">return</span><span style="font-size: 12px; color: rgb(0, 0, 0);"> document.querySelectorAll(name); } <br/> <br/></span><span style="font-size: 12px; color: rgb(0, 0, 255);">var</span> list=$(".box ul li"<span style="font-size: 12px; color: rgb(0, 0, 0);">); <br/><br/></span><span style="font-size: 12px; color: rgb(0, 0, 255);">var</span> len=<span style="font-size: 12px; color: rgb(0, 0, 0);">list.length; <br/> </span><span style="font-size: 12px; color: rgb(0, 0, 255);">for</span>(<span style="font-size: 12px; color: rgb(0, 0, 255);">var</span> i=0;i<len;i++<span style="font-size: 12px; color: rgb(0, 0, 0);">){ list[i].onmouseover</span>=(<span style="font-size: 12px; color: rgb(0, 0, 255);">function</span><span style="font-size: 12px; color: rgb(0, 0, 0);">(n){ </span><span style="font-size: 12px; color: rgb(0, 0, 255);">return</span> <span style="font-size: 12px; color: rgb(0, 0, 255);">function</span><span style="font-size: 12px; color: rgb(0, 0, 0);">(){ <br/><br/></span><span style="font-size: 12px; color: rgb(0, 0, 255);">for</span>(<span style="font-size: 12px; color: rgb(0, 0, 255);">var</span> j=0;j<len;j++<span style="font-size: 12px; color: rgb(0, 0, 0);">){ list[j].className</span>=""<span style="font-size: 12px; color: rgb(0, 0, 0);">; } list[n].className</span>="current"<span style="font-size: 12px; color: rgb(0, 0, 0);">; } })(i); }<br/><br/><br/><br/></span></script> </body> </html></span>
Whenever the for loop executes list[i].onmouseover, the function will be executed immediately and the current variable i is passed in
Return a function. This forms a closure. Return the function and the scope that the function can access.
Whenever onmouseover is triggered, the returned function will be executed.
Then execute the for loop in the generation function to clear all li's className
This sentence is the most important when executing list[n]. The n here is the i ## passed in when defining onmouseover
# Because the function is executed immediately when it is defined and i is passed to the anonymous function. This i is within the scope of the anonymous function
Each onmouseover saves its own i
, so when triggered Onmouseover allows li to access the i
that was previously saved in the scope, thus realizing the need to change the background color of someone
Related recommendations:Understanding of actual parameters, formal parameters and closures of js functions
The above is the detailed content of Further understanding of js closures. For more information, please follow other related articles on the PHP Chinese website!

The shift from C/C to JavaScript requires adapting to dynamic typing, garbage collection and asynchronous programming. 1) C/C is a statically typed language that requires manual memory management, while JavaScript is dynamically typed and garbage collection is automatically processed. 2) C/C needs to be compiled into machine code, while JavaScript is an interpreted language. 3) JavaScript introduces concepts such as closures, prototype chains and Promise, which enhances flexibility and asynchronous programming capabilities.

Different JavaScript engines have different effects when parsing and executing JavaScript code, because the implementation principles and optimization strategies of each engine differ. 1. Lexical analysis: convert source code into lexical unit. 2. Grammar analysis: Generate an abstract syntax tree. 3. Optimization and compilation: Generate machine code through the JIT compiler. 4. Execute: Run the machine code. V8 engine optimizes through instant compilation and hidden class, SpiderMonkey uses a type inference system, resulting in different performance performance on the same code.

JavaScript's applications in the real world include server-side programming, mobile application development and Internet of Things control: 1. Server-side programming is realized through Node.js, suitable for high concurrent request processing. 2. Mobile application development is carried out through ReactNative and supports cross-platform deployment. 3. Used for IoT device control through Johnny-Five library, suitable for hardware interaction.

I built a functional multi-tenant SaaS application (an EdTech app) with your everyday tech tool and you can do the same. First, what’s a multi-tenant SaaS application? Multi-tenant SaaS applications let you serve multiple customers from a sing

This article demonstrates frontend integration with a backend secured by Permit, building a functional EdTech SaaS application using Next.js. The frontend fetches user permissions to control UI visibility and ensures API requests adhere to role-base

JavaScript is the core language of modern web development and is widely used for its diversity and flexibility. 1) Front-end development: build dynamic web pages and single-page applications through DOM operations and modern frameworks (such as React, Vue.js, Angular). 2) Server-side development: Node.js uses a non-blocking I/O model to handle high concurrency and real-time applications. 3) Mobile and desktop application development: cross-platform development is realized through ReactNative and Electron to improve development efficiency.

The latest trends in JavaScript include the rise of TypeScript, the popularity of modern frameworks and libraries, and the application of WebAssembly. Future prospects cover more powerful type systems, the development of server-side JavaScript, the expansion of artificial intelligence and machine learning, and the potential of IoT and edge computing.

JavaScript is the cornerstone of modern web development, and its main functions include event-driven programming, dynamic content generation and asynchronous programming. 1) Event-driven programming allows web pages to change dynamically according to user operations. 2) Dynamic content generation allows page content to be adjusted according to conditions. 3) Asynchronous programming ensures that the user interface is not blocked. JavaScript is widely used in web interaction, single-page application and server-side development, greatly improving the flexibility of user experience and cross-platform development.


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

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool

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.

WebStorm Mac version
Useful JavaScript development tools

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

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.