📅  最后修改于: 2022-03-11 14:55:33.927000             🧑  作者: Mango
function resequenceEmpTab(){
let table = document.getElementById('report_table_fs-report');
console.log('x');
for(var i = 1; i < table.rows.length; i++)
{
{
//set the value of the first column to i
table.rows[i].cells[0].innerHTML = i;
}
}
}