数据表行项目选择

发布于 2024-10-09 09:21:04 字数 41 浏览 0 评论 0原文

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

How to get a particular row (entire column) values in the datatable, and how to redirect these values to the next page?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

嘿咻 2024-10-16 09:21:05

假设您正在谈论 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'));

Assuming you are talking about a HTML table, you can get all the cell data of a column, as an array, like this:

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

Where n is the index of the column you want.

To send them to another page, you can encode them and redirect:

window.location.href = '/foo.html?data=' + encodeURI(col.join('some-separator'));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文