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

HTML DOM Table rows Collection


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

ไวยากรณ์

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

object.rows

คุณสมบัติของแถวคอลเลกชัน

องค์ประกอบในคอลเล็กชันในเอกสาร HTML

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

วิธีการรวบรวมแถว

องค์ประกอบจากคอลเลกชัน องค์ประกอบจากคอลเลกชัน องค์ประกอบจากคอลเลกชัน

ที่ระบุจากคอลเล็กชัน

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

ให้เราดูตัวอย่างของ HTML DOM table rows 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 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>

ผลลัพธ์

HTML DOM Table rows Collection

คลิกที่ “รับจำนวนแถว ” เพื่อรับจำนวน องค์ประกอบจากคอลเล็กชัน

HTML DOM Table rows Collection