첫 번째 방법:
function submitData() {
var tb = document.getElementById(IDArray[0]); //서버 컨트롤 GridView의 ID를 가져옵니다.
if (tb)
{
var 행 = tb.rows;
for (var i = 1; i var id = 행[i].cells[1].innerText;
var 이름 = 행[i].cells[2] .innerHTML;
var oDropDownList =rows[i].cells[3].childNodes[0];
var oText = oDropDownList.options[oDropDownList.selectedIndex].text; //선택한 텍스트를 드롭에서 가져옵니다. -GridView의 다운 목록
var oValue = oDropDownList.options[oDropDownList.selectedIndex].value;; //GridView의 드롭다운 목록에서 선택한 값을 가져옵니다.
}
}
}
두 번째 방법:
function submitData() {
var tb = document.getElementById(IDArray[0]);
if (tb.hasChildNodes) {
if (tb.childNodes[0] != null) {
var rowCount = tb.childNodes[0] .childNodes.length;
for (var i = 1; i < rowCount; i ) {
var child = tb.childNodes[0].childNodes[ i];
var id = rowCount[i ].cells[1].innerHTML;
var name = child.childNodes[1].innerHTML;
var oDropDownList = child.childNodes[2].childNodes [0];
var oText = oDropDownList.options[oDropDownList.selectedIndex].text;
var oValue = oDropDownList.options[oDropDownList.selectedIndex].value
}
}
} >