我有一个tableorter的表。 因此,如果我对表进行排序,则行号不会更新。这是固定的......
$("#tablesorter-demo tr").click(function () {
$('#tablesorter-demo tr').not(this).removeClass('hilite');
$(this).toggleClass('hilite');
var i = $("#tablesorter-demo tr").index(this);
$("#codefmenims_id").val($("#td_idfmenims" + i + "").text());
$("#groupe1").val($("#td_gpefme" + i + "").text());
$("#groupe1s").val($("#td_gpenims" + i + "").text());
});
如果我对表格进行排序,有人可以告诉我如何更新表格的行号吗?
答案 0 :(得分:0)
$("#tablesorter-demo tr").each(function(key) {
$(this).children('td').eq(0).text(key+1);
});
请添加一个jsfiddle,以便我发布更好的解决方案。