访问特定单元格并检索其内容

时间:2012-11-11 14:15:19

标签: tablesorter

如何检索TableSorter对象中特定单元格的内容?假设我想检索单元格[3,4]的内容,这意味着第三行和第四列的内容。我确信这有一个简单的方法......

谢谢!

FG

1 个答案:

答案 0 :(得分:0)

根据documentation TableSorter在标准表上的工作

假设这是你的表

<table id='myTable'>
  <tr>
    <td>Row 0 / Cell 0</td>
    <td>Row 0 / Cell 1</td>
  </tr>
  <tr>
    <td>Row 1 / Cell 0</td>
    <td>Row 1 / Cell 1</td>
  </tr>
</table>

因此,您应该能够通过获取对表的引用来获取特定单元格

var myTable = document.getElementById('myTable');

然后通过调用

访问特定单元格
var cell = myTable.rows[1].cells[0]

应使用

访问单元格的内容
cell.firstChild.nodeValue; // returns "Row 1 / Cell 0"