Home Web Front-end JS Tutorial Analysis of the differences between .bind(), .live() and .delegate() in jQuery_jquery

Analysis of the differences between .bind(), .live() and .delegate() in jQuery_jquery

May 16, 2016 pm 06:06 PM
bind live

DOM tree

First, it is helpful to visualize the DOM tree of an HMTL document. A simple HTML page looks like this:
Analysis of the differences between .bind(), .live() and .delegate() in jQuery_jquery
Event bubbling (also known as event propagation)
When we click a link, it triggers the click event of the link element, which triggers the execution of any function we have bound to the click event of that element.
Copy code The code is as follows:

$('a').bind('click' ,function(){alert('that tickles!')})

So a click operation will trigger the execution of the alert function.
Analysis of the differences between .bind(), .live() and .delegate() in jQuery_jquery
The click event will then propagate towards the root of the tree, broadcasting to the parent element, and then to each ancestor element. As long as the click event on one of its descendant elements is triggered, the event will be passed to it.
Analysis of the differences between .bind(), .live() and .delegate() in jQuery_jquery
In the context of manipulating the DOM, document is the root node.
Now we can more easily explain the differences between .bind(), .live() and .delegate().
.bind()
Copy code The code is as follows:
$('a').bind ('click',function(){alert('That tickles!');})

This is the simplest binding method. JQuery scans the document to find all $('a') elements and binds the alert function to the click event of each element.
.live()
Copy code The code is as follows:
$('a').live ('click',function(){alert('That tickles!')})

JQuery binds the alert function to the $(document) element and uses 'click' and 'a' as parameters . Whenever an event bubbles up to the document node, it checks whether the event is a click event and whether the target element of the event matches the 'a' CSS selector. If so, it executes the function.
The live method can also be bound to a specific element (or "context") instead of the document, like this:
Copy code The code is as follows:
$('a',$('#container')[0]).live('click',function(){alert('That tickles!')} )

.delegate()
Copy code The code is as follows:
$('# container').delegate('a','click',function(){alert('That tickles!')})


JQuery scans the document to find $('#container'), and Bind the alert function to $('#container') using the click event and the 'a' CSS selector as parameters. Any time an event bubbles up to $('#container'), it checks to see if the event is a click event and if the target element of the event matches the CSS selector. If the results of both checks are true, it executes the function.
It can be noted that this process is similar to .live(), but it binds the handler to a specific element rather than the document. Savvy JS'ers might conclude that $('a').live() == $(document).delegate('a') , right? Well, no, not quite .
Why .delegate() is better than .live()
For several reasons, people usually prefer to use jQuery’s delegate method instead of the live method. Consider the following example:
Copy code The code is as follows:
$('a').live(' click', function() { blah() });

or
$(document).delegate('a', 'click', function() { blah() });
The latter is actually faster than the former, because the former has to scan the entire The document finds all $('a') elements and saves them as jQuery objects. Although the live function only needs to pass 'a' as a string parameter for later judgment, the $() function does not "know" that the linked method will be .live().

On the other hand, the delegate method only needs to find and store the $(document) element.
One way to seek to get around this problem is to call the live bound outside $(document).ready() so that it executes immediately. In this way, it runs before the DOM is populated, so no elements are found or jQuery objects are created.
Flexibility and chain capabilities
The live function is also quite confusing. Think about it, it's linked to the set of $('a') objects, but it actually works on the $(document) object. For this reason, it can try to chain methods onto itself in a scary way. In fact, what I'm saying is that the live method makes more sense as a global jQuery method in the form of $.live('a',...).
Only supports CSS selectors
Finally, the live method has a very big disadvantage, that is, it can only operate on direct CSS selectors, which makes it very inflexible.
To learn more about the shortcomings of CSS selectors, please refer to the article Exploring jQuery .live() and .die().
Update: Thanks to pedalpete on Hacker News and Ellsass in the comments below for reminding me to include this next section.
Why choose .live() or .delegate() instead of .bind()
After all, bind seems to be more clear and direct, doesn’t it? Well, there are two reasons why we prefer to choose delegate or live instead of bind:
1. To attach handlers to DOM elements that may not yet exist in the DOM. Because bind directly binds handlers to individual elements, it cannot bind handlers to elements that do not yet exist on the page.
2. If you run $('a').bind(…) and then new links are added to the page via AJAX, your bind handler will be invalid for these newly added links. Live and delegate, on the other hand, are bound to another ancestor node, so they are valid for any element that currently or will exist within that ancestor element.
3. Or to attach a handler to a single element or a small group of elements, listen to events on descendant elements instead of looping through and attaching the same function to 100 elements in the DOM one by one. There are performance benefits to attaching handlers to one (or a small set of) ancestor elements rather than directly attaching handlers to all elements in the page.
Stop spreading
The last reminder I want to make has to do with event propagation. Normally, we can terminate the execution of the handler function by using an event method like this:
Copy code The code is as follows:

$('a').bind('click',function(e){
e.preventDefault()
e.stopPropagation()}
)

However, when we use the live or delegate method, the handler function is not actually running. The function needs to wait until the event bubbles to the element that the handler is actually bound to. By this point, our other handler functions from .bind() have already run.
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Solution to PHP Fatal error: Call to undefined function ldap_bind() Solution to PHP Fatal error: Call to undefined function ldap_bind() Jun 22, 2023 pm 11:37 PM

When developing web applications using PHP, we often need to use LDAP authentication to protect application access. However, in some cases, when we try to use PHP's LDAP functionality to implement authentication, we may encounter the following error message: "PHPFatalerror:Calltoundefinedfunctionldap_bind()". This error message usually occurs when an application calls the ldap_bind() function

what is linux bind what is linux bind Mar 25, 2023 am 09:39 AM

Linux bind is a command used to display or set keyboard keys and their related functions. You can use the bind command to understand which key combinations and functions they have, or you can specify which key combinations to use; its usage syntax is "bind [-dlv][ -f <...>][-m <...>][-q <...>]".

How to fix 0x87dd0019 Xbox login error How to fix 0x87dd0019 Xbox login error Mar 22, 2024 pm 02:30 PM

This article will guide you to fix the 0x87dd0019 Xbox login error, which causes connection timeout issues when you try to connect to Xbox Live or log in to Xbox One. What is error code 0x87e00019 on Xbox? If you encounter error code 0x87e00019 when installing or updating games on your Xbox console, it means your Xbox hard drive may be low on storage space or nearly full. To solve this problem, you need to free up some storage space. At the same time, you should also check the status of the Xbox Live service, as this error may be due to Xbox server issues. How to fix 0x87dd0019 Xbox login error using these tips

What should I do if I can't log in to xbox live on win10? Win10 cannot log in to xbox live solution What should I do if I can't log in to xbox live on win10? Win10 cannot log in to xbox live solution Feb 15, 2024 am 11:51 AM

Xbox is Microsoft's own network service center. Many users find that their Win10 computers cannot log in to Xbox Live when playing. So what should they do? Let this site carefully introduce to users the solution to the problem of being unable to log in to xboxlive in win10. Solution to the problem of being unable to log in to xboxlive in Windows 10: 1. Open the run window with the "win+R" shortcut key, enter "services.msc", and press Enter to open it. 2. After entering the "Service" window interface, find "xboxlive Authentication Manager" on the right and double-click to open it.

Error 0x87e107d1 when downloading Xbox content Error 0x87e107d1 when downloading Xbox content Feb 22, 2024 am 09:50 AM

When you encounter error code 0x87e107d1 while downloading Xbox content on your console, you may need some steps to resolve the issue. Usually, this error appears when users try to download content to their Xbox gaming console. Next, we'll explore some ways to fix this issue and ensure you can successfully download the content you need. Fix Error 0x87e107d1 When Downloading Xbox Content If error 0x87e107d1 occurs while downloading Xbox content, use the following fixes to resolve the issue. Check the XboxLive service status Check your internet connection Turn your Xbox console off and on again Try downloading content again Delete and add your profile Let's get started. 1] Check Xbox

Implementation and use of bind in JS Implementation and use of bind in JS Feb 24, 2024 pm 01:33 PM

Implementation and use of bind in JS In JavaScript, bind is a very useful function method. It can create a new function, while ensuring that when the function is called, it has a specific this value and can pass the specified parameters. The bind method is defined as follows: functionbind(fn,obj,...args){returnfunction(...args2){return

Xbox Party Chat Audio Interrupts or Not Working [Fix] Xbox Party Chat Audio Interrupts or Not Working [Fix] Feb 19, 2024 am 11:18 AM

If you encounter problems with chat audio being cut off or not working when using Xbox Party, it may be due to an unstable Internet connection or a failure of the Xbox Live service. This article will help you solve these problems and ensure that you can conduct Xbox Party game chat smoothly. Fix Xbox Party Chat audio cutting out or not working Use these fixes to fix Xbox Party Chat audio cutting out or not working: Check XboxLive service status Check your internet connection Turn your Xbox console off and on again Check your NAT type Leave and rejoin the party Factory Reset your Xbox console and let's get started. 1] Check XboxLive service status and continue troubleshooting

Does premiere mean live? Does premiere mean live? Apr 04, 2025 am 12:07 AM

"Premiere" and "live" have different meanings in video production: "premiere" refers to the first release or premiere, while "live" refers to the live broadcast in real time. 1. "Premiere" is the first display of pre-recorded content. 2. Setting up a premiere in Adobe PremierePro involves editing, editing, and rendering, and then scheduling the premiere time. 3. Use Python scripts to schedule video premieres. 4. Key steps include exporting settings, time synchronization and previewing tests. 5. Challenges include performance issues, time management, and platform compatibility.

See all articles