HTML DOM cellIndex 属性

定义和用法

cellIndex 属性可返回一行的单元格集合中单元格的位置。

语法

  1. tabledataObject.cellIndex

实例

下面的例子可返回两个单元格的位置(cell index):

  1. <html>
  2. <head>
  3. <script type="text/javascript">
  4. function alertTd1()
  5. {
  6. alert(document.getElementById('td1').cellIndex);
  7. }
  8. function alertTd2()
  9. {
  10. alert(document.getElementById('td2').cellIndex);
  11. }
  12. </script>
  13. </head>
  14. <body>
  15.  
  16. <table border="1">
  17. <tr>
  18. <th>Firstname</th>
  19. <th>Lastname</th>
  20. </tr>
  21. <tr>
  22. <td id="td1">Peter</td>
  23. <td id="td2">Griffin</td>
  24. </tr>
  25. </table>
  26. <br />
  27. <input type="button" onclick="alertTd1()"
  28. value="Alert cell index of 'Peter'" />
  29. <br />
  30. <input type="button" onclick="alertTd2()"
  31. value="Alert cell index of 'Griffin'" />
  32.  
  33. </body>
  34. </html>