Avoiding Problems Caused by Closures in JavaScript

Avoiding Problems Caused by Closures in JavaScript

About let to avoid problems caused by closure

Use object-oriented thinking to complete the buyer information deletion function. Each piece of information contains:

Name Phone Number Province

Implement the following requirements:
No third-party libraries can be used and native code must be used.
Combined with the basic code structure given, add code at the two locations below code here to complete the buyer information deletion function. Note that this page must be displayed clearly on the mobile phone.

The js code can be adjusted arbitrarily, for example, and completed using es6 code.

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <!--code here-->
    <title>demo</title>
    <style>
        * {
            padding: 0;
            margin: 0;
        }

        .head, li div {
            display: inline-block;
            width: 70px;
            text-align: center;
        }

        li .id, li .sex, .id, .sex {
            width: 15px;
        }

        li .name, .name {
            width: 40px;
        }

        li .tel, .tel {
            width: 90px;
        }

        li .del, .del {
            width: 15px;
        }

        ul {
            list-style: none;
        }

        .user-delete {
            cursor: pointer;
        }

    </style>
</head>

<body>
<div id="J_container">
    <div class="record-head">
        <div class="head id">Serial number</div>
        <div class="head name">Name</div>
        <div class="head sex">Gender</div>
        <div class="head tel">Phone number</div>
        <div class="head province">Province</div>
        <div class="head">Operation</div>
    </div>
    <ul id="J_List">
        <li>
            <div class="id">1</div>
            <div class="name">Zhang San</div>
            <div class="sex">Male</div>
            <div class="tel">13788888888</div>
            <div class="province">Zhejiang</div>
            <div class="user-delete">Delete</div>
        </li>
        <li>
            <div class="id">2</div>
            <div class="name">Li Si</div>
            <div class="sex">female</div>
            <div class="tel">13788887777</div>
            <div class="province">Sichuan</div>
            <div class="user-delete">Delete</div>
        </li>
        <li>
            <div class="id">3</div>
            <div class="name">Wang Er</div>
            <div class="sex">Male</div>
            <div class="tel">13788889999</div>
            <div class="province">Guangdong</div>
            <div class="user-delete">Delete</div>
        </li>
    </ul>
</div>

<script>
    // You can also use ES6 here function Contact() {
        this.init();
    }

    // your code here
</script>
</body>
</html>

code1

<meta name="viewport" content="width = device-width,initial-scale=1">

code2 (other people's code)

 Contact.prototype.init = function () {
        console.log("Test");
        var div = document.getElementsByClassName("user-delete");
        var ul = document.querySelector("#J_List");
        var list = ul.querySelectorAll("li");

        for (var i = 0; i < div.length; i++) {
            (function (i) {
                div[i].onclick = function () {
                    list[i].remove();
                    console.log(i);
                }
            })(i);
        }
    }

    new Contact();

in

 (function (i) {
                div[i].onclick = function () {
                    list[i].remove();
                    console.log(i);
                }
            })(i);

I don't understand the meaning of this immediate execution function

My code

 Contact.prototype.init = function () {
        let div = document.getElementsByClassName("user-delete");
        let ul = document.querySelector("#J_List");
        let list = ul.querySelectorAll("li");

        for (let i in div) {
            div[i].onclick = function () {
                list[i].remove();
                console.log(i);
            }
        }
    }

    new Contact();

Later I remembered that it was to avoid the problems caused by closures. Teacher Liao Xuefeng talked about this, but I didn’t remember it at the moment. For details, please see Liao Xuefeng’s closure. However, there was no problem running my code because there was no block-level scope at the time. But now I can use let to avoid this problem. So if i is declared using let, there is no need to execute the function immediately. And when writing code, you should avoid using var and use let instead. Another thing is to avoid using statements like for(let i =0;condition;++i) and try to use for...in... Some good habits should be developed.

This concludes this article on how to avoid problems caused by closures with let in JavaScript. For more information on let closures in JavaScript, please search previous articles on 123WORDPRESS.COM or continue browsing the following related articles. I hope you will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • Function nesting in JavaScript
  • Learn about JavaScript closure functions in one article
  • JavaScript Closures Explained
  • Javascript scope and closure details
  • JS Difficulties Synchronous and Asynchronous and Scope and Closure and Detailed Explanation of Prototype and Prototype Chain
  • Detailed explanation of JavaScript closure issues
  • Detailed explanation of JavaScript function usage [function definition, parameters, binding, scope, closure, etc.]
  • Details of function nesting and closures in js

<<:  Graphical introduction to the difference between := and = in MySQL

>>:  Docker compose custom network to achieve fixed container IP address

Recommend

What to do if you forget your mysql password

Solution to forgetting MySQL password: [root@loca...

MYSQL string forced conversion method example

Preface Since the types of the same fields in the...

Example of JSON output in HTML format (test interface)

To display the JSON data in a beautiful indented ...

MySQL changes the default engine and character set details

Table of contents 1. Database Engine 1.1 View dat...

What does the "a" in rgba mean? CSS RGBA Color Guide

RGBA is a CSS color that can set color value and ...

Summary of MySQL LOAD_FILE() function method

In MySQL, the LOAD_FILE() function reads a file a...

Manually install mysql5.7.10 on Ubuntu

This tutorial shares the process of manually inst...

Mysql varchar type sum example operation

Some friends, when learning about databases, acci...

A brief introduction to the usage of decimal type in MySQL

The floating-point types supported in MySQL are F...

Sliding menu implemented with CSS3

Result:Implementation code: <!DOCTYPE html>...

In-depth analysis of HTML table tags and related line break issues

What is a table? Table is an Html table, a carrie...

Two ways to install the Linux subsystem in Windows 10 (with pictures and text)

Windows 10 now supports Linux subsystem, saying g...

50 Super Handy Tools for Web Designers

Being a web designer is not easy. Not only do you...

Detailed usage of Vue timer

This article example shares the specific code of ...