search
HomeWeb Front-endJS TutorialDetailed explanation of jQuery event binding on(), bind() and delegate() methods_jquery

I have been studying js for a while. In the process of learning, I found that when binding events in jQuery, some people use bind(), some use on(), some use delegate(), and some use live(). When I looked at the code, I felt that the functions had been implemented, so I passed it by. However, I still didn’t fully understand the difference between them, so I checked the information today and made a summary myself.

The reason why there are so many types of binding methods is because the version of jQuery is updated. For example, the on() method appeared after 1.7.

On the jQuery event binding api page, it is mentioned that the live() method is obsolete and is not recommended for use. So here we mainly look at the following three methods: bind(), delegate(), on()

We prepare an html page for testing various types of event binding.

<html>
<head lang="en">
<meta charset="UTF-8">
<title></title>
<script src="http://libs.baidu.com/jquery/1.10.2/jquery.min.js"></script>
</head>
<body>
<div>
  <button id="btn">添加新的p元素</button>
  <p>第一个p元素</p>
  <p>第二个p元素</p>
  <p>第三个p元素</p>
  <p>第四个p元素</p>
  <p>第五个p元素</p>
</div>

<script>
$("#btn").click(function(){
  $("div").append("<p>这是一个新的p元素</p>");
});
</script>

</body>
</html>

A simple page with a div, several p elements and a button inside the div. Click the button to add p elements. Next we will bind the click event to the p element on the page.

bind()

Usage

Copy code The code is as follows:

$("div p").bind("click", function () {
alert($(this).text());
})

In this way, the click event is bound to all p elements in the div, and the response is to pop up its content. Binding is simple and fast, but there are two problems here:
The first question is that the implicit iteration method is used here. If there are too many matched elements, for example, if I put 50 p elements in a div, I will have to perform binding 50 times. For a large number of elements, performance is affected.
But if it is an id selector, because the id is unique, it is very fast to use the bind() method.
The second problem is that elements that do not yet exist cannot be bound. Clicking the button on the page will dynamically add a p element. If you click on this p element, you will find that there is no action response.
These two problems can be solved using the delegate method.

In addition, there is an abbreviation for the bind() method. The above code can also be replaced with:

Copy code The code is as follows:

$("div p").click(function () {
alert($(this).text());
})

delegate()

Usage

Copy code The code is as follows:

$("div").delegate("p", "click", function () {
alert($(this).text());
});

This approach uses the concept of event delegation. Instead of binding events directly to the p element, bind events to its parent element (or ancestor elements as well). When you click on any element within the div, the event will bubble up from the event target layer by layer until it reaches The element to which you bind the event, such as the div element in this example. During the bubbling process, if the event's currentTarget matches the selector, the code will be executed.

This solves the above two problems of using the bind() method. There is no need to bind events to p elements one by one. You can also bind dynamically added p elements. Even if you bind an event to a document, you don't have to wait for the document to be ready to perform the binding.

In this way, binding is easy, but problems may also occur when calling. If the event target is very deep in the DOM tree, bubbling up layer by layer to find elements that match the selector will affect performance.

on()

on() actually unifies the previous binding event methods. Looking at the uncompressed source code of jQuery (the version I am looking at here is 1.11.3), you can find that both bind() and delegate() are actually What is achieved through the on() method is just that the parameters are different.

Copy code The code is as follows:

bind: function( types, data, fn ) {
Return this.on( types, null, data, fn );
},
unbind: function( types, fn ) {
Return this.off( types, null, fn );
},
delegate: function(selector, types, data, fn) {
Return this.on( types, selector, data, fn );
}
​ undelegate: function(selector, types, fn) {
// ( namespace ) or ( selector, types [, fn] )
Return arguments.length === 1 ? this.off( selector, "**" ) : this.off( types, selector || "**", fn );
}

In the above example, on() can be used for binding as follows:

Copy code The code is as follows:

$("div").on("click","p",function(){
alert($(this).text());
})

Official documentation suggestion:


As of jQuery 1.7, the .on() method is the preferred method for attaching event handlers to a document.

Try to use on() to bind events.

Remove event

corresponds to the bind(), delegate() and on() binding methods, and the methods for removing events are:

Copy code The code is as follows:

$( "div p" ).unbind( "click", handler );
$( "div" ).undelegate( "p", "click", handler );
$( "div" ).off( "click", "p", handler );

In addition to removing the specified event binding as above, you can also remove all event bindings without passing in parameters. I will not list them one by one here. The official documentation of jQuery is very detailed.

Summary

1. When there are many elements matched by the selector, do not use bind() to iteratively bind

2. When using the id selector, you can use bind()

3. When you need to bind dynamically added elements, use delegate() or on()

4. Use delegate() and on() methods, and the DOM tree should not be too deep

5. Try to use on()

The above is the entire content of this article, I hope you all like it.

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
jquery实现多少秒后隐藏图片jquery实现多少秒后隐藏图片Apr 20, 2022 pm 05:33 PM

实现方法:1、用“$("img").delay(毫秒数).fadeOut()”语句,delay()设置延迟秒数;2、用“setTimeout(function(){ $("img").hide(); },毫秒值);”语句,通过定时器来延迟。

jquery怎么修改min-height样式jquery怎么修改min-height样式Apr 20, 2022 pm 12:19 PM

修改方法:1、用css()设置新样式,语法“$(元素).css("min-height","新值")”;2、用attr(),通过设置style属性来添加新样式,语法“$(元素).attr("style","min-height:新值")”。

axios与jquery的区别是什么axios与jquery的区别是什么Apr 20, 2022 pm 06:18 PM

区别:1、axios是一个异步请求框架,用于封装底层的XMLHttpRequest,而jquery是一个JavaScript库,只是顺便封装了dom操作;2、axios是基于承诺对象的,可以用承诺对象中的方法,而jquery不基于承诺对象。

jquery怎么在body中增加元素jquery怎么在body中增加元素Apr 22, 2022 am 11:13 AM

增加元素的方法:1、用append(),语法“$("body").append(新元素)”,可向body内部的末尾处增加元素;2、用prepend(),语法“$("body").prepend(新元素)”,可向body内部的开始处增加元素。

jquery中apply()方法怎么用jquery中apply()方法怎么用Apr 24, 2022 pm 05:35 PM

在jquery中,apply()方法用于改变this指向,使用另一个对象替换当前对象,是应用某一对象的一个方法,语法为“apply(thisobj,[argarray])”;参数argarray表示的是以数组的形式进行传递。

jquery怎么删除div内所有子元素jquery怎么删除div内所有子元素Apr 21, 2022 pm 07:08 PM

删除方法:1、用empty(),语法“$("div").empty();”,可删除所有子节点和内容;2、用children()和remove(),语法“$("div").children().remove();”,只删除子元素,不删除内容。

jquery on()有几个参数jquery on()有几个参数Apr 21, 2022 am 11:29 AM

on()方法有4个参数:1、第一个参数不可省略,规定要从被选元素添加的一个或多个事件或命名空间;2、第二个参数可省略,规定元素的事件处理程序;3、第三个参数可省略,规定传递到函数的额外数据;4、第四个参数可省略,规定当事件发生时运行的函数。

jquery怎么去掉只读属性jquery怎么去掉只读属性Apr 20, 2022 pm 07:55 PM

去掉方法:1、用“$(selector).removeAttr("readonly")”语句删除readonly属性;2、用“$(selector).attr("readonly",false)”将readonly属性的值设置为false。

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

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor