jQuery中是否有一个方法可以计算多个表头类
(<th class="entity7">Machine Names</th>
标签)直到找到具有“机器名称”值的表头? “机器名称”是我需要计数的特定表头单元格中的值。这将允许我知道我想要使用哪个数字列。
答案 0 :(得分:2)
您可以使用filter()
:
var $th = $("#myTable th").filter(function() {
return $(this).text() == "Machine Names";
});
var columnNumber = $th.index();