gpt4 book ai didi

javascript - 如何使用行索引和 td 索引获取 td 中的元素

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:55:15 26 4
gpt4 key购买 nike

我在表格中有一个 Row IndexTD index,我想在 [行索引,TD 索引] .我该怎么做?

最佳答案

表具有用于直接访问单个单元格的访问器属性,即:

table.rows[rowIndex].cells[colIndex]

因此:

table.rows[rowIndex].cells[colIndex].getElementsByTagName('input')[0];

或:

$('input', table.rows[rowIndex].cells[colIndex])

关于javascript - 如何使用行索引和 td 索引获取 td 中的元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13137597/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com