使用Jquery(或js)在html表格上循环遍历列的单元格(不是行的单元格)?
使用 jQuery 循环遍历单元格或行很简单,但循环遍历列的单元格并不简单。
//for cells of rows I will do this
$('table tr').each(function(index,elem)...//loop through cell of row [index]
有人建议一种循环遍历列单元格的简单方法吗?
With jQuery is simple to loop through cells or rows, but it is not simple to loop through the cells of a columns.
//for cells of rows I will do this
$('table tr').each(function(index,elem)...//loop through cell of row [index]
Any one suggest a simple method for looping through cells of a columns?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
编辑:我误读了原来的问题。 此示例将循环遍历表格中的所有单元格,首先按单元格排序。
标记:
jQuery:
结果:
Edit: I misread the original question. This example will loop through all the cells in a table, ordered by their cells first.
Markup:
jQuery:
Result:
将 1 更改为您要选择的任何列
change 1 to whatever column you want to select