search
HomeWeb Front-endJS TutorialDetailed explanation of the use of jquery.map() method_jquery

The prototype method map is similar to each and calls the static method of the same name, except that the returned data must be processed by another prototype method pushStack method before returning. The source code is as follows:

map: function( callback ) {
    return this.pushStack( jQuery.map(this, function( elem, i ) {
      return callback.call( elem, i, elem );
    }));
  },

This article mainly analyzes the static map method. As for pushStack, it will be analyzed in the next essay;

First understand the use of map (manual content)

$.map converts elements in one array to another array.

The conversion function as a parameter will be called for each array element, and the conversion function will be passed a parameter representing the element being converted.

The conversion function can return the converted value, null (removing the item from the array), or an array containing the value expanded into the original array.

Parameters
arrayOrObject,callbackArray/Object,FunctionV1.6
arrayOrObject: array or object.

is called for each array element, and the conversion function is passed a parameter representing the element being converted.

Function can return any value.

Alternatively, this function can be set to a string, and when set to a string, will be treated as a "lambda-form" (short form?), where a represents an array element.

For example, "a * a" represents "function(a){ return a * a; }".

Example 1:

//将原数组中每个元素加 4 转换为一个新数组。
//jQuery 代码:
$.map( [0,1,2], function(n){
 return n + 4;
});
//结果:
[4, 5, 6]

Example 2:

//原数组中大于 0 的元素加 1 ,否则删除。
//jQuery 代码:
$.map( [0,1,2], function(n){
 return n > 0 ? n + 1 : null;
});
//结果:
[2, 3]

Example 3:

//原数组中每个元素扩展为一个包含其本身和其值加 1 的数组,并转换为一个新数组
//jQuery 代码:
$.map( [0,1,2], function(n){
 return [ n, n + 1 ];
});
//结果:
[0, 1, 1, 2, 2, 3]

It can be seen that the map method is similar to the each method by looping through each object or "item" of the array to execute a callback function to operate the array or object, but the two methods also have many differences

For example, each() returns the original array and does not create a new array, while map creates a new array; each traversal means this points to the current array or object value, and map points to the window, because in The source code does not use object impersonation like each;

For example:

var items = [1,2,3,4]; 
$.each(items, function() { 
alert('this is ' + this); 
}); 
var newItems = $.map(items, function(i) { 
return i + 1; 
}); 
// newItems is [2,3,4,5]
//使用each时,改变的还是原来的items数组,而使用map时,不改变items,只是新建一个新的数组。

var items = [0,1,2,3,4,5,6,7,8,9]; 
var itemsLessThanEqualFive = $.map(items, function(i) { 
// removes all items > 5 
if (i > 5) 
  return null; 
  return i; 
}); 
// itemsLessThanEqualFive = [0,1,2,3,4,5]

Back to the map source code

// arg is for internal usage only
  map: function( elems, callback, arg ) {
    var value, key, ret = [],
      i = 0,
      length = elems.length,
      // jquery objects are treated as arrays
      isArray = elems instanceof jQuery || length !== undefined && typeof length === "number" && ( ( length > 0 && elems[ 0 ] && elems[ length -1 ] ) || length === 0 || jQuery.isArray( elems ) ) ;

    // Go through the array, translating each of the items to their
    if ( isArray ) {
      for ( ; i < length; i++ ) {
        value = callback( elems[ i ], i, arg );

        if ( value != null ) {
          ret[ ret.length ] = value;
        }
      }

    // Go through every key on the object,
    } else {
      for ( key in elems ) {
        value = callback( elems[ key ], key, arg );

        if ( value != null ) {
          ret[ ret.length ] = value;
        }
      }
    }

    // Flatten any nested arrays
    return ret.concat.apply( [], ret );
  },

First, declare a few variables to prepare for the next traversal. The jsArray variable is used to simply distinguish objects and arrays. This Boolean compound expression is relatively long, but it is not difficult to understand as long as you remember the priority of js operators. Well, first the parentheses are executed first, then the logical AND>Logical OR>Congruent>assignment, and then you can analyze

First calculate in parentheses and then add length !== undefined and typeof length === "number to the result. The final result of these two necessary conditions is then logically ORed with elems instanceof jQuery. Simply put, it is isArray The situations that are true include:

1. elems instanceof jQuery is true, in other words, it is the jquery object

2. length !== undefined && typeof length === "number" and length > 0 && elems[ 0 ] && elems[ length -1 ] ) || length === 0 || jQuery.isArray( elems) At least one of these three is established

Can be split into 3 small situations

length exists and is a number, and the length attribute of the array or array-like object to be traversed is greater than 0. length-1 exists. This ensures that it can be traversed, such as jquery objects, domList objects, etc.

length exists and is a number and the length attribute is equal to 0. If it is 0, it doesn’t matter, it will not be traversed

length exists and is a number and the object to be traversed is a pure array

After meeting these conditions, start traversing separately according to the result of isArray. For "array", use for loop, and for object, use for...in loop

// Go through the array, translating each of the items to their
    if ( isArray ) {
      for ( ; i < length; i++ ) {
        value = callback( elems[ i ], i, arg );

        if ( value != null ) {
          ret[ ret.length ] = value;
        }
      }

When it is an array or array-like, directly pass the value and pointer of each item of the loop and the arg parameter into the callback function for execution. The arg parameter is the parameter used internally in this method, which is very similar to each and some other jquery methods. , as long as null is not returned when executing the callback function, the result returned by the execution will be added to the new array. The same is true for object operations and directly skip

// Flatten any nested arrays
    return ret.concat.apply( [], ret );

Finally, the result set is flattened. Why is this step required? Because map can expand arrays, this is the case in the previous third example:

$.map( [0,1,2], function(n){
 return [ n, n + 1 ];
});

If used in this way, the new array obtained is a two-dimensional array, so the dimensionality must be reduced

ret.concat.apply([], ret) is equivalent to [].concat.apply([], ret). The key function is apply, because the second parameter of apply divides the ret array into multiple parameters. Passing it to concat to convert a two-dimensional array into a one-dimensional array is worth collecting

A simple analysis of the map method has been completed. I hope you can correct me if there are any mistakes due to limited capabilities.

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
Replace String Characters in JavaScriptReplace String Characters in JavaScriptMar 11, 2025 am 12:07 AM

Detailed explanation of JavaScript string replacement method and FAQ This article will explore two ways to replace string characters in JavaScript: internal JavaScript code and internal HTML for web pages. Replace string inside JavaScript code The most direct way is to use the replace() method: str = str.replace("find","replace"); This method replaces only the first match. To replace all matches, use a regular expression and add the global flag g: str = str.replace(/fi

8 Stunning jQuery Page Layout Plugins8 Stunning jQuery Page Layout PluginsMar 06, 2025 am 12:48 AM

Leverage jQuery for Effortless Web Page Layouts: 8 Essential Plugins jQuery simplifies web page layout significantly. This article highlights eight powerful jQuery plugins that streamline the process, particularly useful for manual website creation

Build Your Own AJAX Web ApplicationsBuild Your Own AJAX Web ApplicationsMar 09, 2025 am 12:11 AM

So here you are, ready to learn all about this thing called AJAX. But, what exactly is it? The term AJAX refers to a loose grouping of technologies that are used to create dynamic, interactive web content. The term AJAX, originally coined by Jesse J

10 jQuery Fun and Games Plugins10 jQuery Fun and Games PluginsMar 08, 2025 am 12:42 AM

10 fun jQuery game plugins to make your website more attractive and enhance user stickiness! While Flash is still the best software for developing casual web games, jQuery can also create surprising effects, and while not comparable to pure action Flash games, in some cases you can also have unexpected fun in your browser. jQuery tic toe game The "Hello world" of game programming now has a jQuery version. Source code jQuery Crazy Word Composition Game This is a fill-in-the-blank game, and it can produce some weird results due to not knowing the context of the word. Source code jQuery mine sweeping game

How do I create and publish my own JavaScript libraries?How do I create and publish my own JavaScript libraries?Mar 18, 2025 pm 03:12 PM

Article discusses creating, publishing, and maintaining JavaScript libraries, focusing on planning, development, testing, documentation, and promotion strategies.

Load Box Content Dynamically using AJAXLoad Box Content Dynamically using AJAXMar 06, 2025 am 01:07 AM

This tutorial demonstrates creating dynamic page boxes loaded via AJAX, enabling instant refresh without full page reloads. It leverages jQuery and JavaScript. Think of it as a custom Facebook-style content box loader. Key Concepts: AJAX and jQuery

jQuery Parallax Tutorial - Animated Header BackgroundjQuery Parallax Tutorial - Animated Header BackgroundMar 08, 2025 am 12:39 AM

This tutorial demonstrates how to create a captivating parallax background effect using jQuery. We'll build a header banner with layered images that create a stunning visual depth. The updated plugin works with jQuery 1.6.4 and later. Download the

How to Write a Cookie-less Session Library for JavaScriptHow to Write a Cookie-less Session Library for JavaScriptMar 06, 2025 am 01:18 AM

This JavaScript library leverages the window.name property to manage session data without relying on cookies. It offers a robust solution for storing and retrieving session variables across browsers. The library provides three core methods: Session

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 Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment