Contoh
Klik pada baris yang berbeda untuk mengingatkan posisi mereka:
alert("Section row index is: " + x.sectionRowIndex);
Cobalah sendiri " Definisi dan Penggunaan
Properti sectionRowIndex mengembalikan posisi baris dalam baris koleksi dari <tbody>, <thead>, atau <tfoot> .
Dukungan Browser
Properti sectionRowIndex didukung di semua browser utama.
Sintaksis
Kembali properti sectionRowIndex:
tablerowObject .sectionRowIndex
Rincian teknis
Kembali Nilai: | Sebuah Nomor, mewakili posisi baris dalam koleksi deretan tbody, thead, atau tfoot |
---|
Contoh lebih
Contoh
Mengembalikan posisi baris dalam koleksi thead, tbody, dan baris 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>";
}
Cobalah sendiri " <TableRow Object