js如何获取表格中某一行中的表格

表格1的第二行里插入新表格2,如何用js获取表格2的值
2024-12-15 03:10:27
推荐回答(2个)
回答1:






小白编辑部 and LittleWhite

table {
margin: auto;
width: 300px;
border-collapse: collapse;
border: 1px solid black;
}

td {
border: 1px solid black;
text-align: center;
font: 20px/1.5 Consolas, 微软雅黑;
}


onload = function ()
    {
var first = document.getElementById('first');
var result = first.tBodies[0].rows[1].cells[0].children[0];
var x = result.tBodies[0].rows[0].cells[0].firstChild.nodeValue;
console.log(x);
    }




22





dd





回答2:

建立表格2的时候直接给一个ID,然后每次用ID直接取得对象就能取到里面的东西了