TableRow sectionRowIndex 属性
描述
sectionRowIndex 属性返回 <tbody>、<thead> 或 <tfoot> 的 rows 集合中行的位置。
浏览器支持
属性 | |||||
---|---|---|---|---|---|
sectionRowIndex | 是 | 是 | 是 | 是 | 是 |
语法
返回 sectionRowIndex 属性
tablerowObject.sectionRowIndex
技术细节
返回值 | 一个 Number,表示行在 tbody、thead 或 tfoot 的 rows 集合中的位置 |
---|
更多示例
示例
返回 thead、tbody 和 tfoot rows 集合中行的位置
var x = document.getElementsByTagName("tr");
var txt = "";
var i;
for (i = 0; i < x.length; i++) {
txt = txt + "The index of Row "+(i+1)+" is: "+x[i].sectionRowIndex+"<br>";
}
自己尝试 »
❮ TableRow 对象