Home Web Front-end JS Tutorial Detailed explanation of the difference between Jquery's $(selector).each() and $.each()

Detailed explanation of the difference between Jquery's $(selector).each() and $.each()

Jun 16, 2017 pm 04:20 PM
jquery selector the difference

We have all used the each function in Jqurey, and we all know that there are two ways to call each(), one is to call through $.each(), and the other is to call through $(selector).each() , so what’s the difference between them?

If you look at the Jquery source code, you will know that $.each() is the core implementation, $(selector).each() is the $.each() called, let’s first analyze $.each( ) source code (at the bottom):

The each (obj, callback, args) function receives 3 parameters: obj - the object or array to be traversed, callback - the callback function to be traversed and executed , args--the array specified by yourself (ignore it first).

The implementation of each method in jQuery uses the call method. The call method can set the context. First, in the following example, the effect of array each is the same. Why not call it directly?

You can change the pointer of this through call.

var testCall = function(obj, callback){
    callback.call(obj, 1);
}
Copy after login

testCall(["1. Change the pointer of this", "2. The function can be called internally through this"], function(index){ //Using the call method, you can directly access the call through this The object passed in as the first parameter.
alert(this[index]); //2. The function can be called through this });

Does not use the call method. this.

var test = function(obj, callback){
    callback(obj, 1);
}
Copy after login

test(["1. Change the pointer of this", "2. The function can be called through this inside the function"], function(index){ //Do not use call method, do not use this.
alert(this[index]); //undefined});

jQuery.each should be the this point modified by call;

$.each([1,2,3], function (index, item) {    console.log({index:index,value:item,_this:this});
});/*
  Object {index: 0, value: 1, _this: Number}
  Object {index: 1, value: 2, _this: Number}
  Object {index: 2, value: 3, _this: Number}
*/
Copy after login

I haven’t looked at the jQuery source code, use callback.call is a copycat and should be implemented in the same way.

var each = function(arr, callback){
  for( var index = 0 ; index < arr.length ; index++ ){
    callback.call(arr[index], index, arr[index]);
  }
}
each([1,2,3], function (index, item) {
    console.log({index:index,value:item,_this:this});
});/*
  Object {index: 0, value: 1, _this: Number}
  Object {index: 1, value: 2, _this: Number}
  Object {index: 2, value: 3, _this: Number}
*/
Copy after login

Note: this, if call is not used, this cannot be used in the callback function.

1. The case without args

Generally speaking, args are not commonly used, so we will not discuss the situation when if (args) is established first, that is, just look at the gray mark in the code part, this is also the core part of each() function

if(isArray) {
      for(; i < length; i++) {
        value = callback.call(obj[i], i, obj[i]);
        if(value === false) { break; }
      }
    }
Copy after login

If the object you want to traverse is an array type, enter this code block
 for loopTraverse Each element of the array , and then use the call method to execute obj[i].callback(i,obj[i]),
Therefore, when you write the callback function yourself, you should be aware that jquery will use arrays Each object in the callback method executes your callback function. The parameters passed are the index of the element in the array and the element. At the same time, this inside the callback method also points to the element;
The next line is to determine whether the callback function has returned a value. If the callback function returns false, break out of the array loop.

If the object you pass can also be traversed, the code is the same as the above array traversal

else {
      for(i in obj) {
          value = callback.call(obj[i], i, obj[i]);
          if(value === false) { break; }
        }
    }
Copy after login

If you pass the object, use for(x in y) to traverse Attributes of object ,
The principle is the same as above, except that it is replaced with the attribute x inside the object to execute the callback function, which is equivalent to obj.attr.callback(i,obj.attr);
Return If the function returns false, the loop operation will also end.

2. The situation with args

When calling each() with the third parameter, the following code block will be entered for analysis:  

if(isArray) {            
   for(; i < length; i++) {
     value = callback.apply(obj[i], args);                
     if(value === false) { break; }
            }
        } else {            
        for(i in obj) {
          value = callback.apply(obj[i], args);                
          if(value === false) { break; 
          }
        }
  }
Copy after login

In the same way, it will first determine whether the object you want to traverse is an array. If it is an array, traverse the element obj[i] of the array and execute obj[i].callback(args)
Note ! The parameter passed here is the args array you passed in. This is different from the args parameter without. That is to say, if you call the each function and pass in your own array parameter, the callbackParameters of the functionThe list is the args array you passed. Same as above for everything else.

$(selector).each(callback,args) function receives 2 parameters: callback--the callback function to be traversed and executed, args--the array specified by yourself. After understanding the $.each() function, $(selector).each is simple. Open the source code and find that the $.each() function is called inside $(selector).each. The source code is as follows:

each: function( callback, args ) {
      return jQuery.each( this, callback, args );
  },
Copy after login

You can see that when calling $.each(), the obj parameter is written as this, which is $(selector). This is the jquery selector returning a jqueryinternal object.  

Summary: The difference between $.each() and $(selector).each() is that the former can traverse all objects or arrays, while the latter is returned by the jquery selector jquery internal objects are traversed, the former is more powerful

The above is the detailed content of Detailed explanation of the difference between Jquery's $(selector).each() and $.each(). For more information, please follow other related articles on 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

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

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)

Why is Bittensor said to be the 'bitcoin' in the AI ​​track? Why is Bittensor said to be the 'bitcoin' in the AI ​​track? Mar 04, 2025 pm 04:06 PM

Original title: Bittensor=AIBitcoin? Original author: S4mmyEth, Decentralized AI Research Original translation: zhouzhou, BlockBeats Editor's note: This article discusses Bittensor, a decentralized AI platform, hoping to break the monopoly of centralized AI companies through blockchain technology and promote an open and collaborative AI ecosystem. Bittensor adopts a subnet model that allows the emergence of different AI solutions and inspires innovation through TAO tokens. Although the AI ​​market is mature, Bittensor faces competitive risks and may be subject to other open source

Is there any difference between South Korean Bitcoin and domestic Bitcoin? Is there any difference between South Korean Bitcoin and domestic Bitcoin? Mar 05, 2025 pm 06:51 PM

The Bitcoin investment boom continues to heat up. As the world's first decentralized digital asset, Bitcoin has attracted much attention on its decentralization and global liquidity. Although China was once the largest market for Bitcoin, policy impacts have led to transaction restrictions. Today, South Korea has become one of the major Bitcoin markets in the world, causing investors to question the differences between it and its domestic Bitcoin. This article will conduct in-depth analysis of the differences between the Bitcoin markets of the two countries. Analysis of the differences between South Korea and China Bitcoin markets. The main differences between South Korea and China’s Bitcoin markets are reflected in prices, market supply and demand, exchange rates, regulatory supervision, market liquidity and trading platforms. Price difference: South Korea’s Bitcoin price is usually higher than China, and this phenomenon is called “Kimchi Premium.” For example, in late October 2024, the price of Bitcoin in South Korea was once

What exchange is Nexo? Is Nexo exchange safe? What exchange is Nexo? Is Nexo exchange safe? Mar 05, 2025 pm 07:39 PM

Nexo: Not only is it a cryptocurrency exchange, but also your digital financial manager. Nexo is not a traditional cryptocurrency exchange, but a financial platform that focuses more on cryptocurrency lending. It allows users to obtain loans in cryptocurrency as collateral and provides services to earn interest. While Nexo also offers cryptocurrency buying, selling and redemption capabilities, its core business is crypto lending. This article will explore the operating model and security of Nexo in depth to provide investors with a more comprehensive understanding. Nexo's operating model was founded in 2018 and is headquartered in Zug, Switzerland, and is a pioneer in the field of digital finance. It is different from other centralized exchanges and focuses more on providing comprehensive financial services. Users can buy, sell, trade cryptocurrencies without selling assets and

The difference between Ether and Bitcoin What is the difference between Ether and Bitcoin The difference between Ether and Bitcoin What is the difference between Ether and Bitcoin Mar 19, 2025 pm 04:54 PM

The difference between Ethereum and Bitcoin is significant. Technically, Bitcoin uses PoW, and Ether has shifted from PoW to PoS. Trading speed is slow for Bitcoin and Ethereum is fast. In application scenarios, Bitcoin focuses on payment storage, while Ether supports smart contracts and DApps. In terms of issuance, the total amount of Bitcoin is 21 million, and there is no fixed total amount of Ether coins. Each security challenge is available. In terms of market value, Bitcoin ranks first, and the price fluctuations of both are large, but due to different characteristics, the price trend of Ethereum is unique.

Is Bitcoin speculation a stock speculation? Why? What are the differences between the two? Is Bitcoin speculation a stock speculation? Why? What are the differences between the two? Mar 05, 2025 pm 02:24 PM

Bitcoin: Digital gold or stock trading derivatives? In-depth analysis of the nature of its investment. Bitcoin, as an emerging investment method, has drastically fluctuated prices and has similarities with the stock market trading rules, which has triggered people's questions about its investment nature: Is Bitcoin speculation equivalent to stock speculation? This article will discuss in-depth from the aspects of definition, nature, issuance mechanism, etc., and unveil the mystery of Bitcoin investment. Bitcoin and Stocks: The essential difference between Bitcoin and Stocks is: Investing in Bitcoin is not the same as investing in stocks. Bitcoin is a decentralized digital currency that belongs to the category of digital assets or virtual assets. Its transactions are completely controlled by users and adopts a point-to-point (P2P) transmission model to form a decentralized payment system. This concept was proposed by Satoshi Nakamoto in 2009. Unlike traditional currencies,

What is the difference between bean bread and deepseek What is the difference between bean bread and deepseek Mar 12, 2025 pm 01:24 PM

The core difference between bean bun and DeepSeek is retrieval accuracy and complexity. 1. Doubao is based on keyword matching, simple and direct, with low cost, but low accuracy, and is only suitable for structured data; 2. DeepSeek is based on deep learning, can understand semantics, has high accuracy, but high cost, and is suitable for unstructured data. The final choice depends on the application scenario and resource limitations. If the accuracy requirements are not high, choose bean bags, and if you pursue high precision, choose DeepSeek.

Crypto investment mentality is very important! How to avoid unnecessary worries and make correct decisions? Crypto investment mentality is very important! How to avoid unnecessary worries and make correct decisions? Mar 05, 2025 pm 07:24 PM

Fear, uncertainty and doubt of crypto investment: How to make informed decisions? Many crypto investors face fears of “this is the last cycle”, as well as concerns about the duration of the bull market, coupled with pressure from others, which together lead to poor investment decisions. This article will explore how to overcome these challenges and make smarter investment choices. Potential risk: Distraction: Blindly chase hot spots and ignore the value of core assets. Pessimism and hesitation: Uncertainty leads to lack of confidence, inability to hold for a long time, and even exit from the market. Lack of belief: Lack of in-depth research on projects and cannot cope with market volatility. Lack of profit-making strategies: clearing positions early due to fear of pullbacks, missing potential returns. Coping strategies: 1. Focus on core areas:

Detailed introduction to Ouyi okex opening and closing time Detailed introduction to Ouyi okex opening and closing time Mar 18, 2025 pm 01:06 PM

The Ouyi OKEx digital asset trading platform is different from the traditional securities market. It is open for trading 24 hours a day, and users can conduct fiat currency trading, currency trading and contract trading at any time. However, the platform will announce in advance and temporarily adjust trading time or rules in case of system maintenance upgrades or special market events (such as extreme market conditions causing severe market fluctuations), such as suspending trading or modifying contract trading position opening rules. Therefore, it is recommended that users pay close attention to platform announcements and market trends, seize trading opportunities and do a good job in risk management. Only by understanding Ouyi OKEx trading time and rule adjustments can you be at ease in the digital currency market.

See all articles