read
次の HTML コードでは、 、create
、edit
およびdelete
(都市とプロジェクトの場合は 2 つ) の4 つの列を含む行にいます。
私がやりたいのは、プロジェクトで読み取りボタンがチェックされているかどうかを確認することです。私はカピバラで非常に新しいです。試してみ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>