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

Usage examples of $.map() in jquery (code)

不言
Release: 2018-08-16 11:17:27
Original
1924 people have browsed it

The content of this article is about the usage examples (code) of $.map in jquery. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to you.

$.map(data,function(item,index){return XXX})

Traverse each element in the data array and form a Put the new elements into the returned array

var b = $.map( [55,1,2], function( item,index ) {  return {  "label": item,  "value": index  }});
                        
                        alert(b[0].label +"  "+ b[0].value);
Copy after login

The output is: 55 0

[55,1,2] is an array ,According to the return condition, when the item in the function is 55, the index, which is the subscript of the array, is 0

$.map() The brackets in the brackets are equivalent to a loop

Loop multiple pieces of data and define the data as b

var array = [0, 1, 52, 97];
array = $.map(array, function(a, index) {  
return [a - 45, index];
});
Copy after login

The output is: [-45, 0, -44, 1, 7, 2, 52, 3]

Related recommendations:

jQuery method of traversing multiple maps in json_jquery

jQuery map( )Method usage example_jquery

The above is the detailed content of Usage examples of $.map() in jquery (code). For more information, please follow other related articles on the PHP Chinese website!

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!