Home > Article > Web Front-end > Solution to the problem that the events registered in batches using for loop in javascript cannot correctly obtain the index value_javascript skills
The example in this article describes the solution to the problem that JavaScript cannot correctly obtain the index value of events registered in batches using a for loop. Share it with everyone for your reference. The specific analysis is as follows:
Many friends may encounter a problem, that is, when using a for loop to register event processing functions in batches, and then finally obtaining the index value of the current element through the event processing function, it will fail. Let’s look at a code example first:
In the above code, when the li element is clicked, the pop-up value is always four. Our original idea is that clicking the li element will display the index value of the current li element in the div. Let's briefly analyze the reasons. The reason is very simple. After the for loop is executed, the value of index has changed to four, so the above phenomenon occurs.
The code is modified as follows:
The above code achieves our requirements. Of course, closures can also be used. The code is as follows:
I hope this article will be helpful to everyone’s web programming based on JavaScript.