What does delegation do versus a plain on('click',…)?

ぐ巨炮叔叔 提交于 2019-12-30 07:00:25

问题


What is the different in performance and the handling of these two different jQuery statements:

  1. Number One:

    $('#selector1, #selector2, .class1').on('click', function () { 
         //stuff
    });
    
  2. Number Two:

    $(document).on('click', '#selector1, #selector2, .class1', function () { 
         //stuff
    });
    

I know that one does delegation and the other doesn't.

But what does that mean?

Don't both do some sort of action when you click on '#selector1, #selector2, .class1'?

In the end, isn't it the same?


回答1:


Number One will hook the click event on the elements that exist when you execute that statement. E.g., the handler is directly hooked to the actual elements that match when you execute that call.

Number Two will hook the click event on the document, and on receipt of any clicks, will check to see if the element that was actually clicked matches any of the given selectors, and if so will fire the handler. This is event delegation rather than a direct hookup.

So that means several things:

  1. Using Number Two, clicks on elements you add later will trigger the handler; with Number One they won't.
  2. Only bubbling events like click work with Number Two (because it relies on the event bubbling up the DOM to the document level).
  3. If you use a delegated handler (Number Two) and some other code hooks the event on the actual element and then cancels propagation (bubbling) of the event, the delegated handler won't see it.
  4. The delegated form (Number Two) has to match the element that was clicked (and potentially its ancestors) against the selector when the click occurs, which takes a non-zero amount of time. Not necessarily much time, but more than a direct handler (which doesn't have to do that) would. If you have a lot of delegated handlers on the same element (in this case, the document), you might start noticing.

There are times when using a directly-hooked handler is better, and times when event delegation (usually using something more focussed than the document, though) is better. Usually, the dividing line between those is a judgement call, but for example if you want to respond to clicks on table rows, you're probably better off hooking the click event on the table element with a tr selector, rather than attaching the click event of every single table row, particularly if you update the table dynamically. Whereas if you have a unique button you know exists in the DOM when you're hooking up your handler, and you want to fire a specific function when that button (but not anything else) is clicked, a direct handler probably makes more sense.

Here's an example (live copy):

HTML:

<p>Click me</p>

JavaScript:

jQuery(function($) {

  $('p').on('click', function() {
    display("Directly-attached handler fired. Click this paragraph and note the difference in what happens compared to when you click the 'click me' paragraph.");
  });
  $(document).on('click', 'p', function() {
    display("Delegated handler fired.");
  });

  function display(msg) {
    $("<p>").html(msg).appendTo(document.body);
  }
});

Note that when you click the "click me" paragraph, you get two new paragraphs added to the document, one of them the result of the first on call, the other the result of the second. But note that if you click either of those two new paragraphs, you only see the handler from the second on call (the delegated one), not the first. That's because those paragraphs didn't exist when you hooked up the first handler.




回答2:


  1. The on() method attaches a event handler for each of the elements matched by the jQuery object. If you pass the optional selector to the on() method, the handler will only fire if the event occurred on a descendant of that element.

    Due to this, the first example will attach multiple event handlers, as the jQuery object contains 3 elements. However, the second example will attach a single event handler, which will handle the click event for all '#selector1, #selector2, .class1''s

    Obviously this leaves the first at a performance disadvantage if many elements are matched (as multiple event handlers are bound, compared to the single one attached in the second example).

    For a small number of objects, choosing the second example over the first is a micr-optimization at best. However if you've got lots of elements (list items, rows in a table), you should seriously consider using the second example over the first.

  2. Because on() attaches handlers to each of the elements matched by the jQuery object, you cannot attach handlers directly to elements that are not yet in the DOM (e.g. if you wish to add the elements programatically via code or through AJAX). This is where the ability to provide a selector as a parameter to on() becomes extremely useful; this allows you to attach an event handler to an element that is currently in the DOM, but which will handle events that fire on elements that are not yet in the DOM (but which match the selector you provided).

    Put another way, in the first example, jQuery attaches an event handler to all elements that match the #selector1, #selector2, .class1 selector; and so will miss all elements that haven't been registered in the DOM yet.

    On the other hand, if you use the second example, jQuery attaches an event handler to all elements that match the document selector (e.g. the single Document element), and attaches a handler to it which will fire if the event it receives originated from a element matched by the selector #selector1, #selector2, .class1; this has the advantage of working for all future #selector1, #selector2, .class1 elements.

    You can see this in operation here; http://jsfiddle.net/kntR7/

  3. Because number two is bound to the document, any element which accepts the handler for the same event will receive the handler before (as document is the last place which receives the handler through event propagation), so if it chooses to cancel the event using event.stopPropagation() or event.stopImmediatePropagation(), the handler will never be reached.

    You can see this in operation here; http://jsfiddle.net/mkNyU/




回答3:


For anyone familiar with the pre 1.7 syntax, here's how on can be used:

//bind syntax
$(selector).on(event, callback);
$(selector).bind(event, callback);

//delegate syntax
$(parent).on(event, selector, callback);
$(selector).delegate(selector, event, callback);

//live syntax
$(document).on(event, selector, callback);
$(selector).live(event, callback);

So your first line ($('#selector1, #selector2, .class1').on('click', function)) is a bind format to attach events to existing elements.

Your second line ($(document).on('click', '#selector1, #selector2, .class1', function)) is a live format to attach events to any element that matches the selector when the event occurs, whether or not the elements exist within the dom at the time of binding.




回答4:


The first one binds 3+ event handlers (one to each element ) that are lost once the elements are replaced. The first one will fail if the elements don't exist yet.

The second one binds 1 event handler (one to document ) that will never be lost unless you explicitly remove it. And once the handler is called here, the event has already propagated to document. Any time you click anywhere on the page, jQuery internally checks if it was on any element that matches the selector you gave and fires the handler you gave if it does. This is only if the event propagated to document and wasn't stopped at lower level element.

The second one can be bound even before document ready, and it will still work even if the elements don't exist yet.



来源:https://stackoverflow.com/questions/8125490/what-does-delegation-do-versus-a-plain-onclick

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!