Home > Web Front-end > JS Tutorial > body text

Introduction to jQuery functions map() and each() and analysis of similarities and differences_jquery

WBOY
Release: 2016-05-16 16:31:50
Original
1332 people have browsed it

Method syntax: map()

map(callback)
The callback function is called for each element in the wrapped set and the return value is collected into an instance of the jQuery object.
Parameters
callback (Function) A callback function that is called for each element in the wrapped set.
For example, the following code collects the id values ​​of all div elements on the page into a javascript array:

Copy code The code is as follows:

var iDs = $("div").map(function(){
Return (this.id==undefined) ? null :this.id;
}).get();

Look at the set of checkboxes contained in the form below:

Copy code The code is as follows:





















We can get a comma separated checkbox ID:

Copy code The code is as follows:

$(':checkbox').map(function() {
return this.id;
}).get().join();

The result of this call is the string, "two,four,six".

In the callback function, this points to the current DOM element in each iteration.

Method syntax: each()

each(iterator)
Traverse all elements in the matching set and call the passed iteration function
for each element iterator (function) callback function called
for each element in the matching set The each() method can also be used to traverse JavaScript array objects or even single objects, for example:

Copy code The code is as follows:

$([a,b,c,d]).each(function(){
alert(this);
})

This statement will call the iteration function for each element of the array passed in $(), and this in the function points to the individual array item.

Each time the callback function is executed, the current loop count will be passed as a parameter (counting starts from 0). More importantly, the callback function is triggered in the context of the current DOM element. Therefore the keyword this always points to this element.

Suppose we have a simple unordered list like this on the page.

Copy code The code is as follows:


  • foo

  • bar


You can select and iterate over these lists:

Copy code The code is as follows:

$( "li" ).each(function( index ) {
console.log( index ": "" $(this).text() );
});

Each item in the list will be displayed in the following message:

0: foo
1: bar
The difference between the two

The map() method is mainly used to traverse operating arrays and objects, and each() is mainly used to traverse jquery objects.

each() returns the original array and does not create a new array.
The map() method returns a new array. If map is used unnecessarily, memory may be wasted.

Related labels:
source:php.cn
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!