我知道如何使用jQuery获取单元格的行和列索引,但我无法弄清楚相反的情况。给定行和列索引,我将如何访问此位置的td?
答案 0 :(得分:75)
使用纯JavaScript:
// table is a reference to your table
table.rows[rowIndex].cells[columnIndex]
参考: HTMLTableElement
,HTMLTableRowElement
使用jQuery,您可以使用.eq()
:
$('#table tr').eq(rowIndex).find('td').eq(columnIndex)
// or
$('#table tr:eq(' + rowIndex + ') td:eq(' + columnIndex + ')')
答案 1 :(得分:9)
如何使用nth-child
选择器?
http://api.jquery.com/nth-child-selector/
var row = 4;
var col = 2
var cell = $('table#tableId tr:nth-child(' + row + ') td:nth-child(' + col + ')');
请注意,子索引是基于1的,而不是通常的基于0的。
答案 2 :(得分:0)
您可以使用:eq
选择器:
var row = 1;
var col = 2;
var cell = $('table tr:eq(' + row + ') td:eq(' + col + ')');