兩個(gè)相同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>??
?
2018-10-10
getElementsTagName('table')[0]??扇〉降谝粋€(gè)table,第二個(gè)則getElementsTagName('table')[1].
代理事件則同樣道理獲取到td的父元素就行了