最新的Web开发教程
 

TableRow sectionRowIndex Property

<对象的TableRow

点击不同的行,以提醒自己的立场:

alert("Section row index is: " + x.sectionRowIndex);
试一试»

定义和用法

所述sectionRowIndex属性返回一个行的位置的行的集合<TBODY>,<THEAD>或<tfoot>


浏览器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

该sectionRowIndex属性在所有主流浏览器的支持。


句法

返回sectionRowIndex属性:

tablerowObject .sectionRowIndex

技术细节

返回值: 一个数字,代表在TBODY的行集合的行的位置,THEAD,或TFOOT

更多示例

返回在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