我想从 html 表中提取数据,例如
<table>
<tr>
<th> Header1 </th>
<th> Header2 </th>
<th> Header3 </th>
</tr>
<tr>
<td> Value 1,1 </td>
<td> Value 2,1 </td>
<td> Value 3,1 </td>
</tr>
... rows ...
</table>
并获取数组:
如何使用 jQuery 做到这一点?
我不关心序列化它,或者将它放入 JSON 对象,因为我想用它来呈现图表。
相关的一般设计问题:
目前我有类似的东西
1. ajax query returns html table
2. use jQuery to get values from html table
3. render chart
从 ajax 查询中返回一个 JSON 对象,然后从那里渲染一个表格和图表是否更有意义?