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

How jQuery prevents events from bubbling up

伊谢尔伦
Release: 2016-11-22 14:12:36
Original
1182 people have browsed it

Condition: There is a DIV element in the outer layer and a P element in the inner layer. There is such a relationship: DIV is the parent element of the P element, and P is the child element of the outer DIV. There is inclusion and being included between them. relation.

Event: Now we bind the same event on both elements, such as click event.

Result: At this time, when we click the inner P tag, the click event of the inner element is triggered, and at the same time, the click event of the outer DIV is also triggered.

JQuery provides three ways to prevent events from bubbling.

Method 1: event.stopPropagation();

Method 2: event.preventDefault();

Method 3: return false;

Difference: event.stopPropagation() only prevents events from bubbling up, but does not prevent events itself. event.preventDefault() only prevents the event itself and does not prevent the event from bubbling up. Returning false not only prevents the event from bubbling up, but also prevents the event itself.


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!