Home > Web Front-end > JS Tutorial > body text

How to get bubbling elements in js event bubbling

WBOY
Release: 2024-02-20 09:13:36
Original
401 people have browsed it

How to get bubbling elements in js event bubbling

How to get the bubbling element in js event bubbling, you need specific code examples

Event bubbling means that when an event on an element is triggered, its upper layer The parent element will also receive this event. In JavaScript, bubbling elements can be obtained through event objects. Below, I'll give you a concrete code example to explain how to get the bubbling element.

First, we need an HTML page that contains nested elements, as shown below:

<!DOCTYPE html>
<html>
<head>
<title>事件冒泡示例</title>
</head>
<body>
  <div id="outer">
    <div id="inner">
      <button id="button">点击我</button>
    </div>
  </div>

<script src="script.js"></script>
</body>
</html>
Copy after login

In this page, we have an outer div element (id is "outer "), an inner div element (id is "inner"), and a button element (id is "button").

Next, we need a JavaScript file to handle event bubbling and get the bubbling element. In the script.js file, we will handle the click event and obtain the id of the bubbling element. The code is as follows:

// 获取外层div元素
var outer = document.getElementById('outer');

// 绑定点击事件处理函数
outer.addEventListener('click', function(event) {
  // 获取冒泡元素的id
  var bubbleElementId = event.target.id;
  
  // 打印冒泡元素的id
  console.log('冒泡元素的id:', bubbleElementId);
});
Copy after login

In the above code, we first obtain the outer div element through the getElementById method, and then use the addEventListener method to bind a click event handler to it. In the event processing function, the target attribute of the event object is used to obtain the element that triggered the event, that is, the bubbling element. Then, we get the id of the bubble element through the id attribute of the target element. Finally, we use the console.log method to print the bubbled element's id to the browser's console.

When we click the button on the page, the event will bubble up to the outer div, and then we can see the id output of the bubbled element in the console.

Through the above code examples, we can clearly understand how to get bubble elements in JavaScript.

The above is the detailed content of How to get bubbling elements in js event bubbling. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!