Js USES the for loop and innerHTML to get the td value under the selected tr

  • 2020-03-30 04:00:58
  • OfStack


function getParentEl (el, tagName) {
if (!el) return el;

do {
el = el.parentNode;
} while(el && el.tagName !== tagName);

return el;
}

function temp(){
//Gets the value of the selected row
var temp=document.getElementsByName('id');
for(var i=0;i<temp.length;i++){
if(temp[i].checked==true){
edit=temp[i].value;
var tr = getParentEl(temp[i], 'TR');
var tds = tr.cells;
for (var j = 0; j < tds.length; j++) {
var tdInner = tds[j].innerHTML;
alert(tdInner);
}
}
}
}

Related articles: