标签:[1] code body elements 元素 htm span html inner
// alert(oTab.getElementsByTagName("tbody")[0]
// .getElementsByTagName(‘tr‘)[1]
// .getElementsByTagName(‘td‘)[2].innerHTML);
// 可以简写成下面样子:
alert(oTab.tBodies[0]
.rows[1]
.cells[2].innerHTML);
标签:[1] code body elements 元素 htm span html inner
原文地址:https://www.cnblogs.com/apollo1616/p/9813458.html