當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


jQuery .each()用法及代碼示例


jQuery 中的each() 函數迭代對象和數組。具有 length 屬性的數組從索引 0 到 length-1 進行遍曆,而像對象這樣的數組則通過其屬性名稱進行遍曆。

用法:

$.each('array or object', function(index, value){
  // Your code
})

在此 .each() 函數中,數組或對象作為第一個參數和回調函數。該回調函數可以選擇接受兩個參數:索引和值。因此,我們必須將回調函數傳遞給each()方法。

示例 1:

HTML


<!DOCTYPE html> 
<html lang="en"> 
  
<head> 
    <!-- using jquery library -->
    <script src= 
"https://code.jquery.com/jquery-git.js"> 
    </script> 
</head> 
  
<body> 
  <script> 
    let arr = [10, 20, 30, 40, 50]; 
    $.each(arr, function (index, value) { 
        document.write(index + ": " + value + "<br>"); 
    }); 
  </script> 
</body> 
  
</html>

輸出:

$(selector).each():我們還可以通過從回調函數返回 false 來提前打破循環。它與上麵的 each() 函數相同,但它迭代 JQuery 對象的 DOM 元素,並且可以為每個元素執行一個函數。

用法:

$('selector').each(function(index, value){
    // Your code
})

它隻接受為每個選定元素執行的回調函數。

例子:

HTML


<!DOCTYPE html> 
<html lang="en"> 
  
<head> 
    <!-- using jquery library -->
    <script src= 
"https://code.jquery.com/jquery-git.js"> 
    </script> 
</head> 
  
<body> 
    <p>para-1</p> 
    <p>para-2</p> 
    <p>para-3</p> 
    <p>para-4</p> 
    <p>para-5</p> 
    <script> 
        $("p").each(function (index) { 
            console.log(index  
                + ": " + $(this).text()); 
        }); 
    </script> 
</body> 
  
</html> 

輸出:



相關用法


注:本文由純淨天空篩選整理自hritikrommie大神的英文原創作品 What is the use of .each() function in jQuery ?。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。