0

如何检索 TableSorter 对象中特定单元格的内容?假设我要检索单元格 [3,4] 的内容,即第三行第四列的​​内容。我确信有一个简单的方法可以做到这一点......

谢谢 !

FG

4

1 回答 1

0

根据文档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"
于 2012-11-11T14:18:44.593 回答