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>
輸出:
相關用法
- JQuery now()用法及代碼示例
- JQuery add()用法及代碼示例
- JQuery before()用法及代碼示例
- JQuery off()用法及代碼示例
- JQuery get()用法及代碼示例
- JQuery css()用法及代碼示例
- JQuery die()用法及代碼示例
- JQuery is()用法及代碼示例
- JQuery delegate()用法及代碼示例
- JQuery slideToggle()用法及代碼示例
- JQuery fadeToggle()用法及代碼示例
- JQuery unbind()用法及代碼示例
- JQuery append()用法及代碼示例
- JQuery fadeIn()用法及代碼示例
- JQuery outerHeight()用法及代碼示例
注:本文由純淨天空篩選整理自SHUBHAMSINGH10大神的英文原創作品 JQuery | unique() method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。