HTML
 Computer >> コンピューター >  >> プログラミング >> HTML

HTMLDOMテーブルtBodiesコレクション


HTML DOMテーブルのtBodiesコレクションは、HTMLドキュメントのテーブル内のすべての要素のコレクションを返します。

構文

以下は構文です-

object.tBodies

tBodiesコレクションのプロパティ

要素の数を返します
プロパティ 説明
長さ HTMLドキュメントのコレクション内の

tBodiesコレクションのプロパティ

要素を返します。要素を返します。要素を返します。
メソッド 説明
[index] コレクションから指定されたインデックス
item(index) コレクションから指定されたインデックス
namedItem(id) コレクションから指定されたid

HTMLDOMテーブルの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>

出力

HTMLDOMテーブルtBodiesコレクション

「テーブル本体の数を取得」ボタンをクリックして、コレクションから要素の数を取得します。

HTMLDOMテーブルtBodiesコレクション


  1. HTMLDOMテーブルのヘッドプロパティ

    HTML DOMテーブルのtHeadプロパティは、HTMLドキュメント内のテーブルの要素を返します。 構文 以下は構文です- object.tHead HTMLDOMテーブルのtHeadプロパティの例を見てみましょう- 例 <!DOCTYPE html> <html> <style>    body {       color: #000;       background: lightblue;       height: 100vh; &nb

  2. HTMLDOMテーブルのtFootプロパティ

    HTML DOMテーブルのtFootプロパティは、HTMLドキュメント内のテーブルの要素を返します。 構文 以下は構文です- object.tFoot HTMLDOMテーブルのtFootプロパティの例を見てみましょう- 例 <!DOCTYPE html> <html> <style>    body {       color: #000;       background: lightblue;       height: 100vh; &nb