问题描述
有谁知道如何将一个 HTML 值表转换为一个很好的 JSON 对象以使用 jQuery 进行操作?
Anyone know how to convert an HTML table of values into a nice JSON object to be manipulated with jQuery?
推荐答案
HTML 表格?比如,二维数组中的所有 An HTML table? Like, all the 然后只需使用 $.json(或您想要的任何库)将其转换为 JSON 字符串. Then just use $.json (or whatever library you want) to turn that into a JSON string. 编辑 —重新编写以使用本机(此处填充) edit — re-written to use the native (shim here) jQuery The jQuery 它可能使用原始的 jQuery 版本,只需在返回值周围包装一个额外的数组. It might work to use the original jQuery version and just wrap an extra array around the returned values. 这篇关于jQuery 将 HTML 表格数据转换为 JSON 对象的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 内容? <td>
contents in a 2-d array?var tbl = $('table#whatever tr').map(function() {
return $(this).find('td').map(function() {
return $(this).html();
}).get();
}).get();
.map()
来自数组原型:.map()
from the array prototype:var tbl = $('table#whatever tr').get().map(function(row) {
return $(row).find('td').get().map(function(cell) {
return $(cell).html();
});
});
.map()
函数具有将返回数组展平为结果数组的特性".也就是说,如果回调函数返回一个本身就是数组的值,那么返回的数组不是成为 .map()
结果的 one 单元格的值,它的每个元素都添加到结果中..map()
function has the "feature" of flattening returned arrays into the result array. That is, if the callback function returns a value that is itself an array, then instead of that returned array becoming the value of one cell of the .map()
result, its elements are each added to the result.