我需要使用 jQuery 获取以下 html 表的检查行的 JSON
JSON 应该包含用户在文本框中输入的评论。任何指针都会对我有所帮助。
<table id="potable_grid" class="tab">
<thead>
<tr>
<th>
select PO
</th>
<th>
po id
</th>
<th>
ponumber
</th>
<th>
pocurrency
</th>
<th>
balance
</th>
<th>
thisinvoice
</th>
<th>
thisinvoiceinInvoicecurrency
</th>
<th>
comments
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<input type="checkbox" id="chckPO" />
</td>
<td>
po001
</td>
<td>
cuspo1
</td>
<td>
usd
</td>
<td>
10000
</td>
<td>
200
</td>
<td>
2
</td>
<td>
<input type="text" id="txtPO" />
</td>
</tr>
<tr>
<td>
<input type="checkbox" id="chckPO" />
</td>
<td>
po002
</td>
<td>
pocus125
</td>
<td>
inr
</td>
<td>
5000
</td>
<td>
300
</td>
<td>
18000
</td>
<td>
<input type="text" id="txtPO" />
</td>
</tr>
</tbody>
</table>
我检查了许多帖子,例如 HTML Table to JSON
但它适用于行没有任何控制的简单 html 表。