HTML DOM 表格行集合


HTML DOM 表格行集合返回 HTML 文档中表格的所有 <tr> 元素的集合。

语法

以下是语法 −

object.rows

行集合的属性

HTML 文档中集合中的元素。

属性
说明
length
它返回 HTML 文档中集合中 <tr> 元素的数量。

行集合的方法

集合中的元素集合中的元素。集合中的元素

方法
说明
[index]
它返回集合中指定索引的 <tr> 元素。
item(index) <tr>
它返回集合中指定索引的 <tr> 元素。
namedItem(id)
它返回集合中指定的 id <tr> 元素

让我们看一个 HTML DOM 表格行集合的示例 −

示例

 实时演示

<!DOCTYPE html>
<html>
<style>
   body {
      color: #000;
      background: lightblue;
      height: 100vh;
      text-align: center;
   }
   table {
      margin: 2rem auto;
   }
   .show {
      font-size: 1.2rem;
   }
   .btn {
      background: #db133a;
      border: none;
      height: 2rem;
      border-radius: 2px;
      width: 40%;
      display: block;
      color: #fff;
      outline: none;
      cursor: pointer;
      margin: 1rem auto;
   }
   .show {
      font-size: 1.2rem;
   }
</style>
<body>
<h1>DOM Table rows Collection Demo</h1>
<table border="2">
<thead>
<tr>
<th>Name</th>
<th>Roll No.</th>
</tr>
<thead>
<tbody>
<tr>
<td>John</td>
<td>071717</td>
</tr>
<tr>
<td>Jane</td>
<td>031717</td>
</tr>
</tbody>
</table>
<button onclick="get()" class="btn">Get Number of Rows</button>
<div class="show"></div>
<script>
   function get() {
      var table = document.querySelector('table');
      document.querySelector('.show').innerHTML = 'Number of rows : ' + table.rows.length;
   }
</script>
</body>
</html>

输出

单击“获取行数”按钮以获取集合中 <tr> 元素的数量。

更新于: 2019 年 9 月 20 日

307 次浏览

开始你的 职业生涯

完成课程,获得认证

开始
广告
© . All rights reserved.