var table = document.getElementById("tabale1"); for (var i = 0; i < table.rows.length; i++ ) { var Gcode = table.rows[i].cells[1].innertext; var Gname = table.rows[i].cells[2].innertext; if (table.rows[i].onclick) { break; } } tableの複数行の選択行の項目内容を取得したいのですがうまくいきません。
var table = document.getElementById("tabale1"); for (var i = 0; i < table.rows.length; i++ ) { var Gcode = table.rows[i].cells[1].innerText; var Gname = table.rows[i].cells[2].innerText; if (table.rows[i].onclick) { break; } } innerText(正),innertext(誤)でした。失礼しました。 解決しました。