td/th cellIndex 属性
td/td 对象的 cellIndex 属性返回一行的单元格集合中单元格的位置
cellIndex 属性没有默认值
语法
返回 cellIndex 属性
tdObject.cellIndex thObject.cellIndex
浏览器支持
所有主流浏览器都支持 cellIndex 属性
范例
弹出单元格的位置 (cellInde )
<script> function displayResult(x){ alert("Cell index is: " + x.cellIndex); } </script> <table border="1"> <tr> <td onclick="displayResult(this)">单击显示单元格下标</td> <td onclick="displayResult(this)">单击显示单元格下标</td> </tr> </table>