数据表行项目选择
如何获取数据表中特定行(整列)的值,以及如何将这些值重定向到下一页?
How to get a particular row (entire column) values in the datatable, and how to redirect these values to the next page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您正在谈论 HTML 表,您可以获取列的所有单元格数据作为数组,如下所示:
其中 n 是所需列的索引。
要将它们发送到另一个页面,您可以对它们进行编码并重定向:
Assuming you are talking about a HTML table, you can get all the cell data of a column, as an array, like this:
Where n is the index of the column you want.
To send them to another page, you can encode them and redirect: