我看过很多关于我的问题的帖子,但任何一个对我都有用.
我有这个html表,我想得到单元格下的值“索引”.
我怎样才能使用jQuery来实现这个目的:
<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>
解决方法
我认为这会帮助你
var MyRows = $('table#htmlTable').find('tbody').find('tr'); for (var i = 0; i < MyRows.length; i++) { var MyIndexValue = $(MyRows[i]).find('td:eq(0)').html(); }