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


JQuery uniqueSort()用法及代碼示例


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

用法:

jQuery.uniqueSort( array )

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



  • array:此參數保存DOM元素數組。

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

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

<!DOCTYPE html> 
<html> 
  
<head> 
    <meta charset="utf-8"> 
    <title>JQuery | uniqueSort() method</title> 
    <script src= 
"https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"> 
    </script> 
  
    <style> 
        div { 
            color:blue; 
        } 
    </style> 
</head> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green"> 
        GeeksForGeeks 
    </h1> 
  
    <h3>JQuery | uniqueSort() 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.uniqueSort(divs); 
            $("div:eq(2)").text( 
                "Sorts an array of DOM elements " 
                + divs.length + " with the duplicates removed") 
                .css("color", "red"); 
        }) 
    </script> 
</body> 
  
</html>

輸出:

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

<!DOCTYPE html> 
<html> 
  
<head> 
    <meta charset="utf-8"> 
    <title>JQuery | uniqueSort() method</title> 
  
    <script src= 
"https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"> 
    </script> 
</head> 
  
<body style="text-align:center;"> 
  
    <h1 style="color:green"> 
        GeeksForGeeks 
    </h1> 
  
    <h3>JQuery | uniqueSort() method</h3> 
    <p></p> 
    <p class="geek"></p> 
    <p></p> 
      
    <script> 
        $(function () { 
  
            var ps = $("p").get(); 
            ps = jQuery.uniqueSort(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 | uniqueSort() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。