Sifat tFoot
Sifat tFoot menyimpan rujukan kepada
tfoot
jadual.
Sintaks
jadual.tFoot;
Contoh
Mari warnakan footer jadual dengan warna merah:
<table id="table">
<thead>
<tr>
<th>header1</th>
<th>header2</th>
<th>header3</th>
</tr>
</thead>
<tbody>
<tr>
<td>nilai</td>
<td>nilai</td>
<td>nilai</td>
</tr>
<tr>
<td>nilai</td>
<td>nilai</td>
<td>nilai</td>
</tr>
</tbody>
<tfoot>
<tr>
<td>jumlah</td>
<td>jumlah</td>
<td>jumlah</td>
</tr>
</tfoot>
</table>
let jadual = document.querySelector('#table');
jadual.tFoot.style.color = 'red';