我需要從包含文本字段的表格單元中選取值。如何使用JavaScript從表格中獲取單元格值?
在我來說,我得到這樣的結果:
input type="text" name="test1" onchange="myFunction()
,但我想從一個文本字段的值。
我有這個功能。
function GetTableCells(){
var oTable = document.getElementById('cell_values');
//gets table
var rowLength = oTable.rows.length;
//gets rows of table
for (i = 0; i < rowLength; i++){
//loops through rows
var oCells = oTable.rows.item(i).cells;
//gets cells of current row
var cellLength = oCells.length;
for(var j = 0; j < cellLength; j++){
//loops through each cell in current row
var cellVal = oCells.item(j).innerHTML;
alert(cellVal);
} } }
是不是很容易的ID分配給每個以這種方式輸入和檢索它? 'document.getElementById(「inputID」)'? – oleq 2013-02-20 08:58:26