td/th cellIndex 属性

返回上一级

td/td 对象的 cellIndex 属性返回一行的单元格集合中单元格的位置

cellIndex 属性没有默认值

语法

返回 cellIndex 属性

tdObject.cellIndex
thObject.cellIndex

浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主流浏览器都支持 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>

运行范例 »

返回上一级

JavaScript 参考手册

关于   |   FAQ   |   我们的愿景   |   广告投放   |  博客

  简单教程,简单编程 - IT 入门首选站

Copyright © 2013-2022 简单教程 twle.cn All Rights Reserved.