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


JQuery unique()用法及代碼示例


jQuery中的unique()方法用於對DOM元素數組進行適當排序,並刪除重複項。

用法:

jQuery.unique( array )

參數:unique()方法僅接受上麵提到並在下麵描述的一個參數:



  • array:此參數是DOM元素數組。

返回值:刪除重複項後,它返回DOM元素的排序數組。

範例1:在此示例中,unique()方法從div數組中刪除重複的元素。

<!DOCTYPE html> 
<html> 
<head> 
<meta charset="utf-8"> 
<title>JQuery | unique() method</title>  
  <script src="https://code.jquery.com/jquery-3.4.1.js"> 
</script> 
<style> 
    div { 
        color:blue; 
    } 
</style> 
</head> 
<body style="text-align:center;">  
      
    <h1 style="color:green">  
        GeeksForGeeks  
    </h1>  
      
    <h3>JQuery | unique() method</h3> 
    <div></div> 
    <div class="geek"></div> 
    <div class="geek"></div> 
    <div class="geek"></div> 
    <div></div> 
    <script> 
    $(function () {  
          
        var divs = $( "div" ).get(); 
          
        divs = divs.concat( $( ".geek" ).get() ); 
        $( "div:eq(1)" ).text(  
"Sorts an array of DOM elements " + divs.length + 
 " with the duplicates removed" ); 
      
        divs = jQuery.unique( divs ); 
        $( "div:eq(2)" ).text(  
"Sorts an array of DOM elements " + divs.length + 
 " with the duplicates removed" ) 
            .css( "color", "red" ); 
    }) 
    </script> 
  
</body> 
</html>                    

輸出:

範例2:在此示例中,unique()方法從p數組中刪除所有重複的元素。

<!DOCTYPE html> 
<html> 
<head> 
<meta charset="utf-8"> 
<title>JQuery | unique() method</title>  
  
<script src =  
"https://code.jquery.com/jquery-3.4.1.js">  
    </script>  
  
</head> 
<body style="text-align:center;">  
      
    <h1 style="color:green">  
        GeeksForGeeks  
    </h1>  
      
    <h3>JQuery | unique() method</h3> 
    <p></p> 
    <p class="geek"></p> 
    <p></p> 
    <script> 
    $(function () {  
          
        var ps = $( "p" ).get(); 
        ps = jQuery.unique( ps ); 
        $ UniqueSort (document getElementsByTagName ( "p".)); 
        $( "p" ).text(  
"Sorts an array of DOM elements with the duplicates removed" ) 
            .css( "color", "red" ); 
    }) 
    </script> 
  
</body> 
</html>                    

輸出:




相關用法


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