HTML DOM 表元素 tBodies 集合


HTML DOM 表元素 tBodies 集合返回 HTML 文件中表中所有 <tbody> 元素的集合。

語法

以下是語法 −

object.tBodies

tBodies 集合的屬性

屬性說明
length它返回 HTML 文件集合中 <tbody> 元素的數量

tBodies 集合的屬性

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

讓我們看一個 HTML DOM 表元素 tBodies 集合示例 −

示例

 實際演示

<!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 tBodies 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>
<tbody>
<tr>
<td>Elon</td>
<td>021717</td>
</tr>
<tr>
<td>Mario</td>
<td>011717</td>
</tr>
</tbody>
</table>
<button onclick="get()" class="btn">Get Number of table body</button>
<div class="show"></div>
<script>
   function get() {
      var table = document.querySelector('table');
      document.querySelector('.show').innerHTML = 'Number of table body element : ' + table.tBodies.length;
   }  
</script>
</body>
</html>

輸出

點選“獲取表格正文數量”按鈕從集合獲取 <tbody> 元素的數量。

更新日期: 2019-9-20

105 次瀏覽

啟動您的 職業生涯

完成課程獲取認證

開始
廣告
© . All rights reserved.