search
HomeWeb Front-endJS TutorialAnalysis of the differences between .bind(), .live() and .delegate() in jQuery_jquery

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
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
PHP Fatal error: Call to undefined function ldap_bind()的解决方法PHP Fatal error: Call to undefined function ldap_bind()的解决方法Jun 22, 2023 pm 11:37 PM

在使用PHP开发Web应用程序时,我们经常需要使用LDAP身份验证来保护应用程序的访问。然而,在有些情况下,当我们尝试使用PHP的LDAP功能来实现身份验证时,可能会遇到以下错误消息:"PHPFatalerror:Calltoundefinedfunctionldap_bind()"。这种错误消息通常会在应用程序调用ldap_bind()函数

linux bind是什么linux bind是什么Mar 25, 2023 am 09:39 AM

linux bind是一个用于显示或设置键盘按键与其相关功能的命令,可以利用bind命令了解有哪些按键组合与其功能,也可以自行指定要用哪些按键组合;其使用语法是“bind [-dlv][-f <...>][-m <...>][-q <...>]”。

如何修复0x87dd0019 Xbox登录错误如何修复0x87dd0019 Xbox登录错误Mar 22, 2024 pm 02:30 PM

本文将指导您修复0x87dd0019Xbox登录错误,该错误会在您尝试连接到XboxLive或登录XboxOne时出现连接超时问题。Xbox上的错误代码0x87e00019是什么?在Xbox主机上安装或更新游戏时,如果你遇到错误代码0x87e00019,这表示你的Xbox硬盘驱动器可能已经存储空间不足或接近满。为了解决这个问题,你需要释放一些存储空间。同时,还应该检查XboxLive服务的状态,因为这个错误可能是由于Xbox服务器问题导致的。如何修复0x87dd0019Xbox登录错误使用这些建

win10无法登录xbox live怎么办?win10无法登录xbox live解决方法win10无法登录xbox live怎么办?win10无法登录xbox live解决方法Feb 15, 2024 am 11:51 AM

xbox是微软自带的网络服务中心,不少的用户们在玩耍的时候发现自己的win10电脑无法登录xboxlive,那么这要怎么办?下面就让本站来为用户们来仔细的介绍一下win10无法登录xboxlive解决方法吧。win10无法登录xboxlive解决方法1、“win+R”快捷键开启运行窗口,输入“services.msc”,回车打开。2、进入“服务”窗口界面后,找到右侧中的“xboxlive身份验证管理器”双击打开

下载Xbox内容时出现错误0x87e107d1下载Xbox内容时出现错误0x87e107d1Feb 22, 2024 am 09:50 AM

当您在控制台上下载Xbox内容时遇到错误代码0x87e107d1时,可能需要一些步骤来解决此问题。通常,此错误会出现在用户试图下载内容到Xbox游戏机时。接下来,我们将探讨一些方法来修复这个问题,确保您能顺利下载所需的内容。修复下载Xbox内容时出现的错误0x87e107d1如果下载Xbox内容时出现错误0x87e107d1,请使用以下修复程序来解决该问题。检查XboxLive服务状态检查您的互联网连接关闭再打开您的Xbox游戏机尝试重新下载内容删除和添加您的个人资料我们开始吧。1]检查Xbox

JS中的bind的实现以及使用JS中的bind的实现以及使用Feb 24, 2024 pm 01:33 PM

JS中的bind的实现以及使用在JavaScript中,bind是一个非常有用的函数方法。它可以创建一个新的函数,同时确保这个函数在调用时,具有特定的this值,并且可以传递指定的参数。bind方法的定义如下:functionbind(fn,obj,...args){returnfunction(...args2){return

Xbox Party Chat音频中断或无法工作[修复]Xbox Party Chat音频中断或无法工作[修复]Feb 19, 2024 am 11:18 AM

如果你在使用XboxParty时遇到聊天音频被切断或无法工作的问题,可能是由于互联网连接不稳定或XboxLive服务出现故障等原因造成的。本文将帮助你解决这些问题,确保你能顺利进行XboxParty游戏聊天。修复Xbox聚会聊天音频切断或不工作使用以下修复程序修复XboxPartyChat音频中断或无法工作的问题:检查XboxLive服务状态检查您的互联网连接关闭后再打开Xbox游戏机检查您的NAT类型离开并重新加入党出厂重置您的Xbox主机我们开始吧。1]检查XboxLive服务状态在继续排查

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

"Premiere"和"live"在视频制作中的含义不同:"premiere"指首次发布或首映,而"live"指实时直播。1."Premiere"是预先录制内容的首次展示。2.在AdobePremierePro中设置首映涉及剪辑、编辑和渲染,然后安排首映时间。3.使用Python脚本可以调度视频首映。4.关键步骤包括导出设置、时间同步和预览测试。5.挑战包括性能问题、时间管理和平台兼容性。

See all articles

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

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use