Home Web Front-end JS Tutorial Detailed explanation of jQuery event binding on(), bind() and delegate() methods

Detailed explanation of jQuery event binding on(), bind() and delegate() methods

Jan 04, 2017 am 10:06 AM

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. I just didn't fully understand the difference, 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>
<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>
Copy after login

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

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

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 very simple and fast, but there are two problems here:
The first problem is that the implicit iteration method is used here. If there are too many matched elements, for example, if I put 50 in a div p element, you 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.
Using the delegate method can solve these two problems.

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

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

delegate()

Usage

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

This method 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, and 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. Check the jQuery uncompressed source code (the version I am looking at here is 1.11.3). You can It is found that both bind() and delegate() are actually implemented through the on() method, but the parameters are different.

 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 );
    }
Copy after login

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

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

Official document recommendation:


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. The methods for removing events are:

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

Except like In addition to removing the specified event bindings 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, dom tree Don’t go too deep

5. Try to use on()

The above is the entire content of this article, I hope everyone will like it.

For more detailed explanations of jQuery event binding on(), bind() and delegate() methods, please pay attention to the PHP Chinese website!


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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

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)

What should I do if I encounter garbled code printing for front-end thermal paper receipts? What should I do if I encounter garbled code printing for front-end thermal paper receipts? Apr 04, 2025 pm 02:42 PM

Frequently Asked Questions and Solutions for Front-end Thermal Paper Ticket Printing In Front-end Development, Ticket Printing is a common requirement. However, many developers are implementing...

Demystifying JavaScript: What It Does and Why It Matters Demystifying JavaScript: What It Does and Why It Matters Apr 09, 2025 am 12:07 AM

JavaScript is the cornerstone of modern web development, and its main functions include event-driven programming, dynamic content generation and asynchronous programming. 1) Event-driven programming allows web pages to change dynamically according to user operations. 2) Dynamic content generation allows page content to be adjusted according to conditions. 3) Asynchronous programming ensures that the user interface is not blocked. JavaScript is widely used in web interaction, single-page application and server-side development, greatly improving the flexibility of user experience and cross-platform development.

Who gets paid more Python or JavaScript? Who gets paid more Python or JavaScript? Apr 04, 2025 am 12:09 AM

There is no absolute salary for Python and JavaScript developers, depending on skills and industry needs. 1. Python may be paid more in data science and machine learning. 2. JavaScript has great demand in front-end and full-stack development, and its salary is also considerable. 3. Influencing factors include experience, geographical location, company size and specific skills.

How to merge array elements with the same ID into one object using JavaScript? How to merge array elements with the same ID into one object using JavaScript? Apr 04, 2025 pm 05:09 PM

How to merge array elements with the same ID into one object in JavaScript? When processing data, we often encounter the need to have the same ID...

Is JavaScript hard to learn? Is JavaScript hard to learn? Apr 03, 2025 am 12:20 AM

Learning JavaScript is not difficult, but it is challenging. 1) Understand basic concepts such as variables, data types, functions, etc. 2) Master asynchronous programming and implement it through event loops. 3) Use DOM operations and Promise to handle asynchronous requests. 4) Avoid common mistakes and use debugging techniques. 5) Optimize performance and follow best practices.

How to achieve parallax scrolling and element animation effects, like Shiseido's official website?
or:
How can we achieve the animation effect accompanied by page scrolling like Shiseido's official website? How to achieve parallax scrolling and element animation effects, like Shiseido's official website? or: How can we achieve the animation effect accompanied by page scrolling like Shiseido's official website? Apr 04, 2025 pm 05:36 PM

Discussion on the realization of parallax scrolling and element animation effects in this article will explore how to achieve similar to Shiseido official website (https://www.shiseido.co.jp/sb/wonderland/)...

The Evolution of JavaScript: Current Trends and Future Prospects The Evolution of JavaScript: Current Trends and Future Prospects Apr 10, 2025 am 09:33 AM

The latest trends in JavaScript include the rise of TypeScript, the popularity of modern frameworks and libraries, and the application of WebAssembly. Future prospects cover more powerful type systems, the development of server-side JavaScript, the expansion of artificial intelligence and machine learning, and the potential of IoT and edge computing.

The difference in console.log output result: Why are the two calls different? The difference in console.log output result: Why are the two calls different? Apr 04, 2025 pm 05:12 PM

In-depth discussion of the root causes of the difference in console.log output. This article will analyze the differences in the output results of console.log function in a piece of code and explain the reasons behind it. �...

See all articles