The concepts and functions of event bubbling and event delegation
What are JS event bubbling and event delegation? Specific code examples are needed
Event bubbling (Event Bubbling) and event delegation (Event Delegation) are two types of JS An important concept related to event processing. This article will introduce both concepts in detail and provide specific code examples to explain their usage and implementation principles.
1. Event Bubbling
Event bubbling means that when an event (such as a click event) occurs on an element, if the element defines an event handler, the event will The event will be triggered first, and then the event will propagate from the current element to the parent element level by level until it reaches the root element of the document.
The event bubbling mechanism allows us to easily add the same event handler to multiple child elements of a parent element without having to define separate event handlers for each child element. This simplifies the code and makes it more maintainable.
The following is a code example for event bubbling:
HTML code:
<div id="parent"> <div id="child1">子元素1</div> <div id="child2">子元素2</div> </div>
JS code:
const parent = document.querySelector('#parent'); const child1 = document.querySelector('#child1'); const child2 = document.querySelector('#child2'); parent.addEventListener('click', function(event) { console.log('触发父元素的点击事件'); }); child1.addEventListener('click', function(event) { console.log('触发子元素1的点击事件'); event.stopPropagation(); }); child2.addEventListener('click', function(event) { console.log('触发子元素2的点击事件'); event.stopPropagation(); });
In the above code, when we When clicking child element 1 or child element 2, the console will output in turn:
触发子元素1的点击事件 触发父元素的点击事件
Only when the event bubbles to the parent element, the event handler of the parent element will be triggered. Stop the event from bubbling by calling event.stopPropagation()
.
2. Event Delegation
Event delegation refers to binding the event handler to the parent element and determining whether to Perform the appropriate action.
The advantage of event delegation is that when a new child element is added to the parent element, there is no need to bind an event handler to the new child element separately, but the event is handled directly through the parent element. . This can greatly reduce the number of event handlers and improve performance.
The following is a code example of event delegation:
HTML code:
<ul id="parent"> <li>项目1</li> <li>项目2</li> <li>项目3</li> </ul>
JS code:
const parent = document.querySelector('#parent'); parent.addEventListener('click', function(event) { if (event.target.tagName === 'LI') { const textContent = event.target.textContent; console.log('点击了项目:' + textContent); } });
In the above code, when we click When any li element is clicked, the console will output the text content of the clicked item. No matter how many li elements are added subsequently, their click events will be handled by the parent element.
The principle of event delegation is implemented through event bubbling. The event first bubbles up to the parent element, and then is judged based on the original target of the event to determine whether the corresponding action needs to be performed.
Summary:
Event bubbling and event delegation are important concepts related to event processing in JS. Event bubbling allows us to easily add the same event handler to multiple child elements of the parent element, improving code reusability; event delegation binds the event handler to the parent element, based on the original target of the event. To decide whether to perform the corresponding operation, improve performance and reduce the amount of code. In actual development, if you use event bubbling and event delegation appropriately according to your needs, you can write elegant and efficient code.
The above is the detailed content of The concepts and functions of event bubbling and event delegation. For more information, please follow other related articles on the PHP Chinese website!

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

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

Hot Article

Hot Tools

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

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Use Golang to develop powerful desktop applications. With the continuous development of the Internet, people have become inseparable from various types of desktop applications. For developers, it is crucial to use efficient programming languages to develop powerful desktop applications. This article will introduce how to use Golang (Go language) to develop powerful desktop applications and provide some specific code examples. Golang is an open source programming language developed by Google. It has the characteristics of simplicity, efficiency, strong concurrency, etc., and is very suitable for

Layui login page jump setting steps: Add jump code: Add judgment in the login form submit button click event, and jump to the specified page through window.location.href after successful login. Modify the form configuration: add a hidden input field to the form element of lay-filter="login", with the name "redirect" and the value being the target page address.

Face detection and recognition technology is already a relatively mature and widely used technology. Currently, the most widely used Internet application language is JS. Implementing face detection and recognition on the Web front-end has advantages and disadvantages compared to back-end face recognition. Advantages include reducing network interaction and real-time recognition, which greatly shortens user waiting time and improves user experience; disadvantages include: being limited by model size, the accuracy is also limited. How to use js to implement face detection on the web? In order to implement face recognition on the Web, you need to be familiar with related programming languages and technologies, such as JavaScript, HTML, CSS, WebRTC, etc. At the same time, you also need to master relevant computer vision and artificial intelligence technologies. It is worth noting that due to the design of the Web side

How to add click event to image in Vue? Import the Vue instance. Create a Vue instance. Add images to HTML templates. Add click events using the v-on:click directive. Define the handleClick method in the Vue instance.

Introduction to HarmonyOS and Go language development HarmonyOS is a distributed operating system developed by Huawei, and Go is a modern programming language. The combination of the two provides a powerful solution for developing distributed applications. This article will introduce how to use Go language for development in HarmonyOS, and deepen understanding through practical cases. Installation and Setup To use Go language to develop HarmonyOS applications, you need to install GoSDK and HarmonyOSSDK first. The specific steps are as follows: #Install GoSDKgogetgithub.com/golang/go#Set PATH

PHP Tips: Quickly implement the function of returning to the previous page. In web development, we often encounter the need to implement the function of returning to the previous page. Such operations can improve the user experience and make it easier for users to navigate between web pages. In PHP, we can achieve this function through some simple code. This article will introduce how to quickly implement the function of returning to the previous page and provide specific PHP code examples. In PHP, we can use $_SERVER['HTTP_REFERER'] to get the URL of the previous page

The event-driven mechanism in concurrent programming responds to external events by executing callback functions when events occur. In C++, the event-driven mechanism can be implemented with function pointers: function pointers can register callback functions to be executed when events occur. Lambda expressions can also implement event callbacks, allowing the creation of anonymous function objects. The actual case uses function pointers to implement GUI button click events, calling the callback function and printing messages when the event occurs.

Answer: JavaScript provides a variety of methods for obtaining web page elements, including using ids, tag names, class names, and CSS selectors. Detailed description: getElementById(id): Get elements based on unique id. getElementsByTagName(tag): Gets the element group with the specified tag name. getElementsByClassName(class): Gets the element group with the specified class name. querySelector(selector): Use CSS selector to get the first matching element. querySelectorAll(selector): Get all matches using CSS selector
