The DOM standard that eventually developed thus speciied that both strategies should be used; irst the event is captured from general to speciic, and then the event bubbles back up to the top of the DOM tree. Event handlers can be registered for either part of the process.
jQuery always registers event handlers for the bubbling phase of the model.
jQuery是如何实现在bubbling phase还是在capturing phase进行事件处理的呢?
