我有一张桌子:
<table id="selectedInv">
<thead>
<tr class="alternate">
<th>
Barcode
</th>
<th>
OverAll Count
</th>
<th>
Transfer Count
</th>
</tr>
</thead>
<tbody>
<tr class="1">
<td> 2323 </td><td> 9 </td><td><input type="text" value="3"></td></tr>
<tr class="2">
<td> 2329 </td><td> 5 </td><td><input type="text" value="2"></td></tr>
<tr class="3">
<td> 2329 </td><td> 3 </td><td><input type="text" value="1"></td></tr>
</tbody>
</table>
单击按钮后,我想收集数据,例如
[{1,3},{2,2},{3,1}]
在哪里
[{a,b}] a=行的类名,b=该行的输入文本值。
并将这些数据发布到操作方法,最好的方法是什么?