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

วัตถุ HTML DOM TableData


วัตถุ HTML DOM TableData แสดงถึงองค์ประกอบ ของเอกสาร HTML

สร้างวัตถุ TableData

ไวยากรณ์

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

document.createElement(“TD”);

คุณสมบัติของวัตถุ TableData

คุณสมบัติ
คำอธิบาย
cellIndex
ส่งกลับตำแหน่งของเซลล์ในคอลเลกชั่นเซลล์ของแถวตาราง
colSpan
ส่งกลับและแก้ไขค่าแอตทริบิวต์ colspan ของตาราง
ส่วนหัว
ส่งกลับและแก้ไขค่าแอตทริบิวต์ส่วนหัวของตาราง
rowSpan
ส่งกลับและแก้ไขค่าแอตทริบิวต์ rowspan ของตาราง

ให้เราดูตัวอย่างของวัตถุ TableData -

ตัวอย่าง

<!DOCTYPE html>
<html>
<style>
   body {
      color: #000;
      background: lightblue;
      height: 100vh;
      text-align: center;
   }
   table {
      margin: 2rem auto;
      width: 400px;
   }
   .btn {
      background: #db133a;
      border: none;
      height: 2rem;
      border-radius: 2px;
      width: 40%;
      display: block;
      color: #fff;
      outline: none;
      cursor: pointer;
      margin: 1rem auto;
   }
</style>
<body>
<h1>DOM TableData Object Demo</h1>
<table border="2">
<thead>
<tr>
<th>Name</th>
<th>Language</th>
</tr>
<thead>
<tbody>
<tr>
<td>John</td>
<td>English</td>
</tr>
<tr>
<td>Elon</td>
<td>Germany</td>
</tr>
<tr class="new-row">
</tr>
</tbody>
</table>
<button onclick="get()" class="btn">Create a TableData</button>
<script>
   function get() {
      var td1 = document.createElement("TD");
      var td2 = document.createElement("TD");
      td1.innerHTML = "Mario";
      td2.innerHTML = "French";
      document.querySelector('.new-row').appendChild(td1);
      document.querySelector('.new-row').appendChild(td2);
   }
</script>
</body>
</html>

ผลลัพธ์

วัตถุ HTML DOM TableData

คลิกที่ “สร้างข้อมูลตาราง ” เพื่อสร้างวัตถุ TableData

วัตถุ HTML DOM TableData