Home  >  Article  >  Web Front-end  >  js uses for loop and innerHTML to get the td value under the selected tr_javascript skills

js uses for loop and innerHTML to get the td value under the selected tr_javascript skills

WBOY
WBOYOriginal
2016-05-16 16:35:121609browse
function getParentEl (el, tagName) {
if (!el) return el;

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

return el;
}

function temp(){
//得到选中row的value值
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);
}
}
}
}
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn