There are problems with event bubbling and event capture in JavaScript and jquery events. The two problems and their solutions are summarized in detail below.
Event bubbling is a process of bubbling from child nodes to ancestor nodes;
Event capture is just the opposite, a process from ancestor nodes to child nodes.
Give an example of jquery click event:
The code is as follows: