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


JQuery .odd()用法及代碼示例


用法
.odd() => jQuery

說明:將匹配元素的集合減少為集合中的奇數,從零開始編號。

  • 添加的版本:3.5.odd()

    • 此方法不接受任何參數。

給定一個表示一組 DOM 元素的 jQuery 對象,.odd() 方法從該集合中的奇數元素構造一個新的 jQuery 對象。計數從零開始!

考慮一個帶有簡單列表的頁麵:

<ul>
  <li>list item 1</li>
  <li>list item 2</li>
  <li>list item 3</li>
  <li>list item 4</li>
  <li>list item 5</li>
</ul>

我們可以將此方法應用於列表項集:

$( "li" ).odd().css( "background-color", "red" );

此調用的結果是第二個和第四個項目的紅色背景。

例子:

突出顯示列表中的奇數項。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>odd demo</title>
  <style>
  .highlight {
    background-color: yellow;
  }
  </style>
  <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
 
<ul>
  <li>Look:</li>
  <li>This is some text in a list.</li>
  <li>This is a note about it.</li>
  <li>This is another note about it.</li>
</ul>
 
<script>
$( "ul li" ).odd().addClass( "highlight" );
</script>
 
</body>
</html>

演示:

相關用法


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