两个相同class的table如何获取到tbody下的tr?该tr的代理事件如何使用?
<table id="cartTable">
<thead>
<tr>
<th><label><input class="check-all check" type="checkbox"/> 全选</label></th>
<th></th><th></th><th></th><th></th><th></th>
</tr>
</thead>
<tbody>
<td class="checkbox"></td>
<td class="goods"></td>
<td class="price"></td>
<td class="count"></td>
<td class="subtotal"></td>
<td class="operation"></td>
</tbody>
</table>
<table id="cartTable">
<thead>
<tr>
<th><label><input class="check-all check" type="checkbox"/> 全选</label></th>
<th></th><th></th><th></th><th></th><th></th>
</tr>
</thead>
<tbody>
<td class="checkbox"></td>
<td class="goods"></td>
<td class="price"></td>
<td class="count"></td>
<td class="subtotal"></td>
<td class="operation"></td>
</tbody>
</table>