我看過很多關於我的問題的帖子,但是其中有一篇適合我。如何使用jQuery獲取html表格中的單元格值
我有這個html表,我會得到單元格(th)「索引」下的值。 如何我可以使用jQuery通過本次相對TD值使這個
<table id="htmlTable">
<caption>Informations des hotspots</caption>
<thead>
<tr>
<th>Index</th>
<th>Nom du hotspot</th>
<th>Image du hotspot</th>
</tr>
</thead>
<tbody>
<tr id="0">
<td>0</td>
<td>Hotspot Fribourg Centre</td>
<td>../images/logos_hotspot/logo_wifi_centre.png</td>
<td>
<input type="button" value="supprimer" />
</td>
</tr>
<tr id="1">
<td>1</td>
<td>Hotspot Avry Centre</td>
<td>../images/logos_hotspot/logo_wifi_avry.png</td>
<td>
<input type="button" value="supprimer" />
</td>
</tr>
</tbody>
</table>
如何讓jQuery的https://codepedia.info/jquery-get-table-cell-td-value-div/ –