jquery bind event, use on. $ (document). On ("click", "#a", function () {alert (1)}) [#document]

Source: Internet
Author: User

$ (document). On ("click", "#a", function () {alert (1)}) [#document] as a replacement of previous delegate etc.

Event capture

Netscape and Microsoft once the war is still more fiery, at that time, Netscape advocated capture mode, Microsoft advocates bubbling way. Later, the adoption of a compromise way, to quell the war, the establishment of a unified standard-first capture and then bubbling.

There are three stages of triggering an event
  1. Document to the event trigger location, capture forward, encounter the same registration event immediately triggering execution
  2. arrives at the event location, triggering the event (if it registers a bubbling event, also registers a capture event, executes in the Order of registration)
  3. Event trigger location toward document direction, bubbling forward, encountering the same registration event immediately triggered

So a lot of people are confused, when we register an event, we usually use a capture or bubbling one:

Obj.addeventlistener ("Click", Func, True); Capture Mode Obj.addeventlistener ("Click", Func, false); Bubbling mode

jquery bind event, use on. $ (document). On ("click", "#a", function () {alert (1)}) [#document]

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.