Home  >  Article  >  Web Front-end  >  Detailed explanation of the use of event delegation in JS

Detailed explanation of the use of event delegation in JS

php中世界最好的语言
php中世界最好的语言Original
2018-05-09 10:11:481310browse

This time I will bring you a detailed explanation of the use of event delegation in JS. What are the precautions when using event delegation in JS. The following is a practical case, let's take a look.

Event delegation (also called Event proxy), in fact, this problem is also simple. To understand event delegation, we must first understand the event bubbling mechanism. clear. Give an example of event bubbling:

        
  • 点击

In this code, when we click li, the click event of li is triggered, but at this time, the click event of ul is also triggered. This is The bubbling of events. After understanding this, we can talk about event delegation. Since events can bubble up from the parent element (ul) of the child element (li), then we can add a click event to ul itself and combine all li events. All are delegated to our parent (ul). Maybe some friends here still don’t understand the use of this event delegation. Let’s give an example of event delegation to illustrate:

        
  • 点击1
  •     
  • 点击2
  •     
  • 点击3
  •     
  • 点击4
  •     
  • 点击5

We are above The code delegates the event to ul, and only adds click events to ul. When running the corresponding li in the browser, the innerHTML corresponding to the li will pop up. This function(e){};## The e parameter in # is actually some event information sent to us by the system when we click on the li. e.target actually refers to the li we click on. Here, every time we click What pops up is the innerHTML of the currently clicked object. This is a simple case of event delegation.

Event delegation is of great significance to us in optimizing the code. We all know that frequent DOM operations are very performance-intensive. Now there are 5 li in ul. If we do not use event delegation to implement the above code To do this, you need to use a for loop and write a click event for each li. In this way, there will be more dom operations. What if there are 10 li, 100 or even more, not to mention the impact of dom operations alone. Performance, if there are too many for loops in li, they will take up a lot of events. If you use event delegation, you can avoid the performance consumption of for loops and the performance consumption of numerous DOM operations.

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:

Detailed explanation of the steps to use WebUploader in the fuzzy box

Detailed explanation of computed use cases in Vue.js

The above is the detailed content of Detailed explanation of the use of event delegation in JS. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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