我正在使用一个table
form
显示数据库表行的。有一个id=0
不能删除的唯一行,但我无法访问它。id
存储在 atd
中,而jQuery.html()
方法returns
正好是id
(0)。问题是每行中还有许多其他td
具有相同值的 s。唯一值唯一的列是表中的第二列,我正在使用:nth-child(2)
. 这是表结构:
<table class="formTable">
<tr>
<th width="26"><input id="chkAll" type="checkbox"
onchange="chkSelectAll()"></th>
<th width="48">Id</th>
<th width="288">Description</th>
<th>Type</th>
<th>MaxTime<br>(min.)</th>
</tr>
</table>
编辑:我已经得到了行号。现在我只需要检查“td html()”是否等于“0”。