TableHeader cellIndex 属性
TableHeader 对象的 cellIndex 属性返回单元格在表格行的单元格集合中的位置
浏览器支持
支持 | 支持 | 支持 | 支持 | 支持 |
语法
返回 cellIndex 属性
tableheaderObject.cellIndex
返回值
数字,表示单元格在表格行的单元格集合中的位置
范例
在不同的单元格上点击,弹出提示框显示它们的索引位置
alert("Cell index is: " + x.cellIndex);
范例
返回表格行中每个单元格的索引位置
var x = document.getElementsByTagName("th"); var txt = ""; for (var i=0; i<x.length; i++) { txt = txt + "The index of Cell "+(i+1)+" is: "+x[i].cellIndex+"<br>"; } document.getElementById("demo").innerHTML=txt;