Home > Web Front-end > JS Tutorial > 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
Release: 2016-05-16 16:35:12
Original
1625 people have browsed it
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);
}
}
}
}
Copy after login
Related labels:
tr
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template