คุณสมบัติ tFoot
คุณสมบัติ tFoot เก็บลิงก์ไปยัง
tfoot
ของตาราง
ไวยากรณ์
ตาราง.tFoot;
ตัวอย่าง
มาเปลี่ยนสีฟุตเตอร์ของตารางให้เป็นสีแดง:
<table id="table">
<thead>
<tr>
<th>header1</th>
<th>header2</th>
<th>header3</th>
</tr>
</thead>
<tbody>
<tr>
<td>value</td>
<td>value</td>
<td>value</td>
</tr>
<tr>
<td>value</td>
<td>value</td>
<td>value</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>สรุป</td>
<td>สรุป</td>
<td>สรุป</td>
</tr>
</tfoot>
</table>
let table = document.querySelector('#table');
table.tFoot.style.color = 'red';