給出的錯誤是a.updateRow
和row.updateCell
不是函數。javascript table cell not update and I have a row index
請告訴適當的方法來更新此單元格。
function edittable(t) { // t is row index
var a = document.getElementById("myTableData");
var x = document.getElementById("<%= txtvalue1.ClientID %>").value;
var y = document.getElementById("<%= txtvalue2.ClientID %>").value;
var rowCount = t; //a.rows.length;
var row = a.updateRow(rowCount);
//alert(row);
row.updateCell(0).innerHTML = '<input type="button" value="Delete" onClick="Javacsript:deleteRow(this)">';
row.updateCell(1).innerHTML = "<input type=\"button\" value=\"Update\" onClick=\"Javacsript:updateRow(this ,'" + x + "','" + y + "');\">";
row.updateCell(2).innerHTML = x;
row.updateCell(3).innerHTML = y;
var b = document.getElementById("<%= ADD.ClientID %>");
b.value = "btnadd";
}
元素上沒有updateRow方法可用。你是指另一種方法嗎? – PSL
你想通過updaterow做什麼 – Rahul11