Savybė tHead
Savybė tHead saugo nuorodą į
thead
lentelės.
Sintaksė
lentelė.tHead;
Pavyzdys
Nudažykime lentelės antraštę raudona spalva:
<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>total</td>
<td>total</td>
<td>total</td>
</tr>
</tfoot>
</table>
let table = document.querySelector('#table');
table.tHead.style.color = 'red';