数据表行项目选择

时间:2010-12-28 06:14:58

标签: jquery datatables

如何获取数据表中的特定行(整列)值,以及如何将这些值重定向到下一页?

1 个答案:

答案 0 :(得分:0)

假设您正在讨论HTML表格,您可以将列的所有单元格数据作为数组获取,如下所示:

var col = $("#myTable tr td:nth-child(n)").map(function() {
    return $(this).text();
}).get();

其中n是所需列的索引。

要将它们发送到另一个页面,您可以对它们进行编码并重定向:

window.location.href = '/foo.html?data=' + encodeURI(col.join('some-separator'));