我需要从X行开始的表格中选择一个单元格。

我有这个:

var filas = $("#table tr");
filas.each(function(index){
               console.log( $(this).children(':nth-child(2)').html() );
           });


它会在我的控制台中打印每行,但我要过滤的行除外,包括标题...

例如:

Table Header
1
2
4
5
6


我只想得到

1
2
4
5
6


我需要做什么?

最佳答案

您可以使用has选择器

var filas = $("#table tr:has(td)");
filas.each(function(index){
               console.log( $(this).children(':nth-child(2)').html() );
           });

关于jquery - 筛选以X行开头的表格单元格或行,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51745335/

10-12 00:40