// alert(oTab.getElementsByTagName("tbody")[0]
            //     .getElementsByTagName('tr')[1]
            //     .getElementsByTagName('td')[2].innerHTML);

            // 可以简写成下面样子:

            alert(oTab.tBodies[0]
                .rows[1]
                .cells[2].innerHTML);

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-28
  • 2021-11-19
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-11-19
  • 2021-11-06
  • 2021-11-19
  • 2022-12-23
  • 2021-11-28
  • 2021-12-27
相关资源
相似解决方案