Detailed Analysis of Event Bubbling Mechanism in JavaScript

Detailed Analysis of Event Bubbling Mechanism in JavaScript

What is bubbling?

There are three stages in DOM event flow: event capture stage, target stage, and event bubbling stage.

Event capturing: In simple terms, when the mouse clicks or a DOM event is triggered, the browser will propagate the event from the root node from the outside to the inside. That is, if a child element is clicked, if the parent element has registered the corresponding event through event capturing, the event bound to the parent element will be triggered first.

Event bubbling (dubbed bubbling): In contrast to event capture, event bubbling is an event propagation from the inside out to the root node.

The triggering order of the DOM standard event flow is: capture first and then bubbling. That is, when a DOM event is triggered, the event will be captured first, and then the event will be bubbled through event propagation after the event source is captured. Different browsers have different implementations for this. IE10 and below do not support capture events, so there is one less event capture stage. IE11, Chrome, Firefox, Safari and other browsers all have this feature.

addEventListener() Method

This method sets an event listener and performs actions with the specified parameters when a certain event occurs. The syntax is:

addEventListener(event, function, useCapture)

The parameter event is required and indicates the event to be monitored, such as click, touchstart, etc., which are the events without the prefix on.

The function parameter is also required, indicating the function to be called after the event is triggered. It can be an externally defined function or an anonymous function.

The parameter useCapture is optional. You can enter true or false to describe whether the event is bubbling or capturing. true means capturing, and the default false means bubbling.

Remove event listener

If you want to remove the event listener added by addEventListener(), you need to use removeEventListener(). The syntax is:

removeEventListener(event, function)

The parameters are the same as addEventListener().

compatibility

IE 8 and earlier, and Opera 7.0 and earlier, do not support the addEventListener() and removeEventListener() methods. They use the following methods instead:

Add an event:

attachEvent(event, function)

Remove event:

**detachEvent(event, function) **

Compatibility issues can be resolved in the following ways:

if (div1.addEventListener) {
         div1.addEventListener('click', function () {
             console.log("Support")
         });
} else if (div1.attachEvent) {
         div1.attachEvent('onclick', function () {
             console.log("Not supported")
         });
}

The specific difference between bubbling and capturing

HTML

    <div id="div1">
         <div id="div2"></div>
    </div>

JS

<script>
        var div1 = document.getElementById("div1");
        var div2 = document.getElementById("div2");
        div1.addEventListener('click',function(){
            console.log("div1--capture phase")
        },true);
        div2.addEventListener('click',function(){
            console.log("div2--capture phase")
        },true);
        div1.addEventListener('click',function(){
            console.log("div1--bubble stage")
        });
        div2.addEventListener('click',function(){
            console.log("div2--bubble stage")
        });
</script>

Output result (the result of execution when div2 is clicked)

Solution

function stopBubble(e) {
         if (e && e.stopPropagation) {
                e.stopPropagation(); //So it supports W3C's stopPropagation() method } else {
             window.event.cancelBubble = true; //Otherwise, we need to use IE's method to cancel event bubbling}
}

Summarize

This is the end of this article about the event bubbling mechanism in JavaScript. For more relevant JavaScript event bubbling content, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future!

You may also be interested in:
  • A brief analysis of event bubbling and event capture in js
  • Introduction to event bubbling and event capture in JS
  • Detailed explanation of JS bubbling events and event capture examples
  • Detailed explanation of js event delegation
  • JavaScript adds event listeners to event delegation in batches. Detailed process
  • Detailed explanation of javascript event bubbling, event capture and event delegation

<<:  Examples of optimistic locking and pessimistic locking in MySQL

>>:  Summary of MySQL time statistics methods

Recommend

Using shadowsocks to build a LAN transparent gateway

Table of contents Install and configure dnsmasq I...

Solution to ElementUI's this.$notify.close() call not working

Table of contents Requirement Description Problem...

Details on using order by in MySQL

Table of contents 1. Introduction 2. Main text 2....

MySQL 8.0.17 installation and configuration graphic tutorial

This article records the graphic tutorial of MySQ...

Causes and solutions to the garbled character set problem in MySQL database

Preface Sometimes when we view database data, we ...

JavaScript to achieve progress bar effect

This article example shares the specific code of ...

Example code and method of storing arrays in mysql

In many cases, arrays are often used when writing...

Brief analysis of the various versions of mysql.data.dll driver

Here is the mysql driver mysql.data.dll Notice: T...

MySQL high availability solution MMM (MySQL multi-master replication manager)

1. Introduction to MMM: MMM stands for Multi-Mast...

Detailed explanation of the role of explain in MySQL

1. MYSQL index Index: A data structure that helps...

js uses cookies to remember user page operations

Preface During the development process, we someti...

Detailed explanation of JavaScript prototype chain

Table of contents 1. Constructors and instances 2...

How to install MySQL database on Ubuntu

Ubuntu is a free and open source desktop PC opera...

Vue3+TypeScript encapsulates axios and implements request calls

No way, no way, it turns out that there are peopl...