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


JQuery Misc each()用法及代碼示例


jQuery中的each()方法用於指定要為每個匹配元素運行的函數。

用法:

$(selector).each(function(index, element))

參數:此方法接受強製性的單個參數函數(索引,元素)。它用於為每個匹配的元素運行。它包含兩個參數。


  • index:它保存選擇器元素的索引位置。
  • element:它保存當前元素。

範例1:本示例使用each()方法顯示每個段落元素。

<!DOCTYPE html> 
<html> 
  
<head>  
    <title> 
        jQuery Misc each() Method 
    </title> 
      
    <script src= 
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
    </script> 
</head>  
  
<body style="text-align:center;"> 
  
    <h1 style = "color:green;" >   
        GeeksForGeeks 
    </h1>   
      
    <h2>jQuery each() Method</h2> 
  
    <button>Click</button> 
      
    <p>Geeks1</p> 
    <p>Geeks2</p> 
    <p>Geeks3</p> 
      
    <!-- Script use each() method -->
    <script> 
        $(document).ready(function() { 
            $("button").click(function() { 
                $("p").each(function() { 
                    alert($(this).text()) 
                }); 
            }); 
        }); 
    </script> 
</body> 
  
</html>  

輸出:

  • 在點擊按鈕之前
  • 單擊按鈕後


範例2:本示例使用each()方法顯示段落元素。

<!DOCTYPE html> 
<html> 
  
<head>  
    <title> 
        jQuery Misc each() Method 
    </title> 
      
    <script src= 
"https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"> 
    </script> 
</head>  
  
<body style="text-align:center;"> 
  
    <h1 style = "color:green;" >   
        GeeksForGeeks 
    </h1>   
      
    <h2>jQuery each() Method</h2> 
  
    <button>Click</button> 
      
    <p>Geeks1-Geeks2-Geeks3</p> 
      
    <div style="color:lightgreen;"></div> 
      
    <!-- Script use each() method -->
    <script> 
        $(document).ready(function(){ 
            $("button").click(function(){ 
                $("p").each(function(){ 
                    $("div").text($(this).text()) 
                }); 
            }); 
        }); 
    </script> 
 </body> 
  
</html>  

輸出:

  • 在點擊按鈕之前
  • 單擊按鈕後


相關用法


注:本文由純淨天空篩選整理自SHUBHAMSINGH10大神的英文原創作品 jQuery | Misc each() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。