Home  >  Article  >  Web Front-end  >  Why do events fail to bubble up?

Why do events fail to bubble up?

WBOY
WBOYOriginal
2024-01-13 08:50:16714browse

Why do events fail to bubble up?

Why can't events bubble up in some cases?

Event bubbling means that when an event on an element is triggered, the event will be passed upwards starting from the innermost element until it is passed to the outermost element. But in some cases, the event cannot bubble, that is, the event will only be processed on the triggered element and will not be passed to other elements. This article will introduce some common situations, discuss why events fail to bubble, and provide specific code examples.

  1. Use event capture mode:
    Event capture is another way of event delivery, as opposed to event bubbling. In capture mode, events are passed starting from the outermost element and working inward until they are passed to the innermost element. If the event is handled during event capture, the event will no longer be bubbled. You can specify whether the event is processed in the capture phase or the bubbling phase through the third parameter of the addEventListener method. The default is false (bubbling phase). The following is a code example that uses the event capture mode:
document.addEventListener('click', function(event) {
  console.log('捕获阶段');
}, true);

document.addEventListener('click', function(event) {
  console.log('冒泡阶段');
}, false);

In the above code, when you click anywhere on the page, the event will be processed in both the capture phase and the bubbling phase. If the third parameter is set to true, the event will only be processed in the capture phase and will not be bubbled, causing the event to fail to bubble.

  1. Use the stopPropagation method:
    The stopPropagation method is used to stop the propagation of events and prevent further bubbling and delivery of events. When the stopPropagation method is called in the event handler, the event will not continue to be delivered to other elements. The following is a code example using the stopPropagation method:
document.getElementById('inner').addEventListener('click', function(event) {
  console.log('内层元素点击事件');
  event.stopPropagation();
});

document.getElementById('outer').addEventListener('click', function(event) {
  console.log('外层元素点击事件');
});

In the above code, when the inner element is clicked, the event is handled on the element but is not passed to the outer element, As a result, events cannot bubble up.

  1. Use the right mouse button click event:
    In some browsers, the right mouse button click event (contextmenu) does not bubble. This is designed to facilitate developers to add custom functions to the right-click menu. The following is a code example where the mouse right-click event cannot bubble:
document.addEventListener('contextmenu', function(event) {
  console.log('右键点击事件');
});

document.addEventListener('click', function(event) {
  console.log('点击事件');
});

In the above code, when the page is right-clicked, only the right-click event will be triggered, and the click event will not be triggered.

Summary:
The situations where events cannot bubble include using event capture mode, calling stopPropagation method and right mouse click event. Understanding these situations can help us better understand the event delivery mechanism during development and avoid unexpected problems. I hope the above content can inspire readers!

The above is the detailed content of Why do events fail to bubble up?. 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