jQuery / JavaScript在html表列中找到最高/最低值

时间:2017-03-23 15:43:00

标签: javascript html html-table

这里讨论如何在html表中找到最高/最低值: jQuery/JavaScript find highest value in table column

但是,我的表有更多列,我想排除第1列和第2列的标记。我如何只排除那两个列被标记?

1 个答案:

答案 0 :(得分:1)

这很简单。使用该答案中的相同代码段,但请进行以下更改:

var data =$.each(trs , function(index, tr){
    $.each($(tr).find("td"), function(index, td){ // Remove .not(":first")
      if (index < 2) return true; // Add this line
      cols[index] = cols[index] || [];
      cols[index].push($(td).text())
    })
});

这将跳过前两列。