Étant donné le tableau suivant, comment puis-je obtenir l'en-tête de tableau correspondant pour chaque élément td?
<table>
<thead>
<tr>
<th id="name">Name</th>
<th id="address">Address</th>
</tr>
</thead>
<tbody>
<tr>
<td>Bob</td>
<td>1 High Street</td>
</tr>
</tbody>
</table>
Étant donné que l'un des éléments td
déjà disponible, comment puis-je trouver l'élément th
?
var $td = IveGotThisCovered();
var $th = GetTableHeader($td);