Home Web Front-end JS Tutorial Concept and usage instructions of JS anonymous self-executing function

Concept and usage instructions of JS anonymous self-executing function

May 10, 2018 pm 03:14 PM
javascript Instructions for use concept

This time I will bring you the concept and usage instructions of JS anonymous self-executing functions. What are the precautions regarding the concept and usage of JS anonymous self-executing functions. The following is a practical case, let’s take a look.

1. Common scenarios of anonymous functions

The anonymous function in js is a very common function type, and the more common scenarios are:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

<input type="button" value="点击" id="btn">

<script type="text/javascript">

  //匿名函数的第一种情形

  var btn=document.querySelector("#btn");

  btn.onclick=function(){

    // alert("aaaaa");

  }

  //匿名函数的第二种情形

  setInterval(function(){

    // alert("bbbbb");

  }, 1000);

  //匿名函数的第三种情形

  var fun=function(){

    alert("ccccc");

  }

  // fun();

  //匿名函数的第四种情形

  var obj={

    name:"dddd",

    say:function(){

      alert(this.name);

    }

  }

  obj.say();

</script>

Copy after login

The above shows the common usage scenarios of anonymous functions. (Note: querySelector is a new method of finding DOM elements in H5)

2. Anonymous self-executing function

As the name suggests, anonymous self-executing function first It is an anonymous function, but this function can be executed automatically by itself without the help of other elements.

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

<input type="button" value="点击" id="btn">

<script type="text/javascript">

//1,匿名函数的第一种实现方式

(function(data){

  // alert(data);

})("eee");

//2.匿名自执行函数的第二种实现方式

(function(){

  // alert("fff");

}());

//3.匿名自执行函数的第三种实现方式

!function(data){

  // alert(data);

}("hhh");

//4.匿名自执行函数的第四种实现方式

var fun=function(data){

  alert(data);

}("iii");

Copy after login

From the above code block, we can conclude that there are generally four ways to implement anonymous self-executing functions.

3. The role of anonymous self-executing functions

①. The most common role of anonymous self-executing functions is to implement closures. I will introduce the concept of closure in detail in a later article. Here is a brief explanation of closures. Closure: Closure is a feature of js. We can use closure to realize the connection inside and outside the function, and can make the local variables of the function always exist in the memory.

②. Anonymous self-executing functions can also be used to simulate the creation of block-level scopes in js, that is, If you use anonymous self-executing functions to wrap some code, you can achieve block-level effects. The effect of the domain is to reduce the number of global variables. After the execution of the anonymous self-executing function is completed, the variables will be released from the memory, thus saving memory.

4. Summary of anonymous functions and anonymous self-executing functions

Anonymous functions can be simply understood as functions without names. There are 4 common scenarios in total. .

Anonymous self-executing functions can be simply understood as anonymous functions that can be executed by themselves. There are four ways to implement anonymous self-executing functions.

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

After vue renders the page, the div scroll bar is positioned at the bottom (with code)

Use vue Let the a tag be clicked and highlighted (code attached)

The above is the detailed content of Concept and usage instructions of JS anonymous self-executing function. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to implement an online speech recognition system using WebSocket and JavaScript How to implement an online speech recognition system using WebSocket and JavaScript Dec 17, 2023 pm 02:54 PM

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 implementing real-time monitoring systems WebSocket and JavaScript: key technologies for implementing real-time monitoring systems Dec 17, 2023 pm 05:30 PM

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 JavaScript and WebSocket to implement a real-time online ordering system How to use JavaScript and WebSocket to implement a real-time online ordering system Dec 17, 2023 pm 12:09 PM

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

What does the metaverse concept mean? What is the metaverse concept? What does the metaverse concept mean? What is the metaverse concept? Feb 22, 2024 pm 03:55 PM

The Metaverse is an illusory world that uses technology to map and interact with the real world. Analysis 1 Metaverse [Metaverse] is an illusory world that makes full use of technological methods to link and create, and maps and interacts with the real world. It is a data living space with the latest social development system. The 2-dimensional universe is essentially a virtual technology and digital process of the real world, which requires a lot of transformation of content production, economic system, customer experience and physical world content. 3 However, the development trend of the metaverse is gradual. It is finally formed by the continuous combination and evolution of many tools and platforms with the support of shared infrastructure, standards and protocols. Supplement: What is the metaverse composed of? 1 The metaverse is composed of Meta and Verse, Meta is transcendence, and V

Learn more about Gunicorn's fundamentals and features Learn more about Gunicorn's fundamentals and features Jan 03, 2024 am 08:41 AM

Basic concepts and functions of Gunicorn Gunicorn is a tool for running WSGI servers in Python web applications. WSGI (Web Server Gateway Interface) is a specification defined by the Python language and is used to define the communication interface between web servers and web applications. Gunicorn enables Python web applications to be deployed and run in production environments by implementing the WSGI specification. The function of Gunicorn is to

Master the key concepts of Spring MVC: Understand these important features Master the key concepts of Spring MVC: Understand these important features Dec 29, 2023 am 09:14 AM

Understand the key features of SpringMVC: To master these important concepts, specific code examples are required. SpringMVC is a Java-based web application development framework that helps developers build flexible and scalable structures through the Model-View-Controller (MVC) architectural pattern. web application. Understanding and mastering the key features of SpringMVC will enable us to develop and manage our web applications more efficiently. This article will introduce some important concepts of SpringMVC

JavaScript and WebSocket: Building an efficient real-time weather forecasting system JavaScript and WebSocket: Building an efficient real-time weather forecasting system Dec 17, 2023 pm 05:13 PM

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

Introduction and core concepts of Oracle RAC Introduction and core concepts of Oracle RAC Mar 07, 2024 am 11:39 AM

Introduction and core concepts of OracleRAC (RealApplicationClusters) As the amount of enterprise data continues to grow and the demand for high availability and high performance becomes increasingly prominent, database cluster technology becomes more and more important. OracleRAC (RealApplicationClusters) is designed to solve this problem. OracleRAC is a high-availability, high-performance cluster database solution launched by Oracle.

See all articles