定義和用法
所述sectionRowIndex屬性返回一個行的位置的行的集合<TBODY>,<THEAD>或<tfoot>
瀏覽器支持
該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