TableRow sectionRowIndex 属性
定义和用法
sectionRowIndex 属性返回 <tbody>, <thead>, 或 <tfoot> 的 rows 集合中行的位置。
浏览器支持
属性 | |||||
---|---|---|---|---|---|
sectionRowIndex | Yes | Yes | Yes | Yes | Yes |
语法
返回 sectionRowIndex 属性:
tablerowObject.sectionRowIndex
技术细节
返回值: | 一个数字,表示行在tbody、thead或tfoot的rows集合中的位置 |
---|
更多实例
实例
返回 thead、tbody 和 tfoot 行集合中行的位置:
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 对象