在下面的 HTML 代码中,我所在的行包含 4 列:read
、、create
和(城市和项目两次)edit
。delete
我想做的是检查项目中是否选中了读取按钮。我是水豚的新手,我试过find('citites')
然后我不知道如何提及它的孩子来检查是否检查了创建。您的帮助将不胜感激。
<tr>
<th class="labelCol" scope="row">Cities</th>
<td class="dataCol col02">
<table class="crudTable">
<tbody>
<tr class="crudTable">
<td class="crudCol">
<img src="/img/checkbox_checked.gif" alt="Checked" width="21" height="16" class="checkImg" id="crudRead___01Ib0000000118kEAA" title="Checked">
</td>
<td class="crudCol">
<img src="/img/checkbox_unchecked.gif" alt="Not Checked" width="21" height="16" class="checkImg" id="crudCreate___01Ib0000000118kEAA" title="Not Checked">
</td>
<td class="crudCol">
<img src="/img/checkbox_unchecked.gif" alt="Not Checked" width="21" height="16" class="checkImg" id="crudUpdate___01Ib0000000118kEAA" title="Not Checked">
</td>
<td class="crudCol">
<img src="/img/checkbox_unchecked.gif" alt="Not Checked" width="21" height="16" class="checkImg" id="crudDelete___01Ib0000000118kEAA" title="Not Checked">
</td>
<td class="marvarCol">
<img src="/img/checkbox_unchecked.gif" alt="Not Checked" width="21" height="16" class="checkImg" id="crudViewAll___01Ib0000000118kEAA" title="Not Checked">
</td>
<td class="marvarCol">
<img src="/img/checkbox_unchecked.gif" alt="Not Checked" width="21" height="16" class="checkImg" id="crudModifyAll___01Ib0000000118kEAA" title="Not Checked">
</td>
</tr>
</tbody>
</table>
</td>
<th class="labelCol" scope="row">Projects</th>
<td class="dataCol">
<table class="crudTable">
<tbody>
<tr class="crudTable">
<td class="crudCol">
<img src="/img/checkbox_checked.gif" alt="Checked" width="21" height="16" class="checkImg" id="crudRead___01Ib00000001HDjEAM" title="Checked">
</td>
<td class="crudCol">
<img src="/img/checkbox_checked.gif" alt="Checked" width="21" height="16" class="checkImg" id="crudCreate___01Ib00000001HDjEAM" title="Checked">
</td>
<td class="crudCol">
<img src="/img/checkbox_checked.gif" alt="Checked" width="21" height="16" class="checkImg" id="crudUpdate___01Ib00000001HDjEAM" title="Checked">
</td>
<td class="crudCol">
<img src="/img/checkbox_unchecked.gif" alt="Not Checked" width="21" height="16" class="checkImg" id="crudDelete___01Ib00000001HDjEAM" title="Not Checked">
</td>
<td class="marvarCol">
<img src="/img/checkbox_unchecked.gif" alt="Not Checked" width="21" height="16" class="checkImg" id="crudViewAll___01Ib00000001HDjEAM" title="Not Checked">
</td>
<td class="marvarCol"><img src="/img/checkbox_unchecked.gif" alt="Not Checked" width="21" height="16" class="checkImg" id="crudModifyAll___01Ib00000001HDjEAM" title="Not Checked">
</td>
</tr>