Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> HTML

HTML DOM Table tBodies Collection


คอลเลกชัน tBodies ตาราง HTML DOM ส่งคืนคอลเลกชันขององค์ประกอบ ทั้งหมดในตารางในเอกสาร HTML

ไวยากรณ์

ต่อไปนี้เป็นไวยากรณ์ -

object.tBodies

คุณสมบัติของคอลเลคชัน tBodies

องค์ประกอบในคอลเลกชันในเอกสาร HTML
ทรัพย์สิน คำอธิบาย
ความยาว ส่งกลับจำนวน

คุณสมบัติของคอลเลคชัน tBodies

ดัชนีที่ระบุจากคอลเล็กชัน ดัชนีที่ระบุจากคอลเล็กชัน ที่ระบุจากคอลเล็กชัน
วิธีการ คำอธิบาย
[ดัชนี] ส่งคืนองค์ประกอบ
รายการ(ดัชนี) ส่งคืนองค์ประกอบ
namedItem(id) ส่งคืนองค์ประกอบ id

ให้เราดูตัวอย่างของ HTML DOM table tBodies Collection -

ตัวอย่าง

<!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>

ผลลัพธ์

HTML DOM Table tBodies Collection

คลิกที่ปุ่ม “Get Number of table body” เพื่อรับจำนวน องค์ประกอบจากคอลเลกชัน

HTML DOM Table tBodies Collection