我正在尝试将用户输入的值添加到每一行的 Slots 单元格中。我想获取总数并将其放在 SlotsTotals 字段中。但是,代码根本不起作用。
function checkRow(){
var table = document.getElementById('tblSample');
for (var i = 0, row; row = table.rows[i]; i++){
document.getElementById('SlotsTotals').value += document.getElementById('txtSlots' + i).value;
}
}
我正在动态地将行添加到表中。用户将在槽字段中输入值。我想遍历表以获取所有值的总计,然后将总计添加到 SlotsTotal 字段。
这是我添加行的一些 html。
function addRow() {
//function ValidateRow(){alert('error');}
//function insertRow();
var tbl = document.getElementById('tblSample');
var lastRow = tbl.rows.length;
// if there's no header row in the table, then iteration = lastRow + 1
//var iteration = lastRow;
var iteration = lastRow;
var row = tbl.insertRow(lastRow);
var cell5 = row.insertCell(6);
var element5 = document.createElement('input');
element5.type = 'text';
element5.name = 'txtSlots' + iteration;
element5.id = 'txtSlots' + iteration;
element5.size = 10;
cell5.appendChild(element5);
}