当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JQuery :odd用法及代码示例


用法
odd selector

不推荐使用的版本:3.4

说明:选择奇数元素zero-indexed。也可以看看:even.

  • 添加的版本:1.0jQuery( ":odd" )

从 jQuery 3.4 开始, 这:oddpseudo-class 已弃用。从您的选择器中删除它并稍后使用过滤结果.odd()(在 jQuery 3.5.0 或更新版本中可用)。

特别注意,0-based indexing 表示,counter-intuitively、:odd 选择匹配集中的第二个元素、第四个元素,依此类推。

其他注意事项:

  • 因为 :odd 是 jQuery 扩展而不是 CSS 规范的一部分,所以使用 :odd 的查询无法利用本机 DOM querySelectorAll() 方法提供的性能提升。为了在使用 :odd 选择元素时获得最佳性能,首先使用纯 CSS 选择器选择元素,然后使用 .filter(":odd")
  • 所选元素按照它们在文档中出现的顺序排列。

例子:

查找奇数表行,匹配第二个、第四个等(索引 1、3、5 等)。

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>odd demo</title>
  <style>
  table {
    background: #f3f7f5;
  }
  </style>
  <script src="https://code.jquery.com/jquery-3.5.0.js"></script>
</head>
<body>
 
<table border="1">
  <tr><td>Row with Index #0</td></tr>
  <tr><td>Row with Index #1</td></tr>
  <tr><td>Row with Index #2</td></tr>
  <tr><td>Row with Index #3</td></tr>
</table>
 
<script>
$( "tr:odd" ).css( "background-color", "#bbbbff" );
</script>
 
</body>
</html>

演示:

相关用法


注:本文由纯净天空筛选整理自jquery.com大神的英文原创作品 :odd。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。