📜  刻面 oracle apex 的行号 - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:33.927000             🧑  作者: Mango

代码示例1
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;
        }
    }         
}