Home > Article > Web Front-end > What are the advantages of the on method in jquery
Advantages of the on method in jquery: 1. The on() method can bind events dynamically added to page elements, and the event handlers added are applicable to current and future elements; 2. on() method Adding one or more event handlers to an element at once can improve efficiency.
The operating environment of this tutorial: windows7 system, jquery3.6.1 version, Dell G3 computer.
on() method adds one or more event handlers on the selected element and sub-elements.
Since jQuery version 1.7, the on() method is the new replacement for the bind(), live(), and delegate() methods. This method brings a lot of convenience to the API and is recommended because it simplifies the jQuery code base.
It is troublesome to write separate registration events for a single element
$("p").click(function(){ $(this).hide(); }); $("p").mouseenter(function(){ $(this).css("background","blue"); });
So you can register multiple events at once through on
$("p").on({ click:function(){ $(this).hide(); }, mouseenter:function(){ $(this).css("background","blue"); } }); //还可以合并 $("div").on( "mouseenter mouseleave", function(){ $(this).toggleclass( "current"); })
The methods for binding events with jQuery are Several, it is recommended to use the .on() method for binding, for two reasons:
1. The on() method can bind events dynamically added to page elements
For example, for DOM elements that are dynamically added to the page, events bound with the .on() method do not need to care about when the element that registered the event is added, nor do they need to be bound repeatedly. Some students may be accustomed to using .bind(), .live() or .delegate(). If you look at the source code, you will find that they actually call the .on() method, and the .live() method is in jQuery1. Version 9 has been removed.
Event handlers added using the on() method apply to current and future elements (such as new elements created by scripts).
bind:
function( types, data, fn ) { return this.on( types, null, data, fn ); },
live:
function( types, data, fn ) { jQuery( this.context ).on( types, this.selector, data, fn ); return this; },
delegate:
function( selector, types, data, fn ) { return this.on( types, selector, data, fn ); }
2, on() method once Performance Adding one or more event handlers to elements can improve efficiency
Many articles have mentioned using event bubbling and proxies to improve the efficiency of event binding, but most of them have not listed specific details. There is a difference, so in order to verify, I did a small test.
Assume that 5,000 li's are added to the page, and use chrome developer tool Profiles to test the page loading time.
Normal binding (let’s call it that)
$("li").click(function(){ console.log(this) });
$(document).on("click","li",function(){ console.log(this) })
Binding The execution time of the process
Ordinary binding is equivalent to registering click events separately on li. The memory usage is about 4.2M and the binding time is about 72ms.
.on() binding uses event proxy, only one click event is registered on the document, the memory usage is about 2.2M, and the binding time is about 1ms.
[Recommended learning: jQuery video tutorial, web front-end video】
The above is the detailed content of What are the advantages of the on method in jquery. For more information, please follow other related articles on the PHP Chinese website!