Latest web development tutorials

Properti sectionRowIndex HTML DOM tr

tr Referensi Obyek benda tr

Definisi dan Penggunaan

properti TsectionRowIndex mengembalikan TBODY baris, THEAD, atau TFOOT baris lokasi pengumpulan

tatabahasa

Sifat Kembali sectionRowIndex:

trObject.sectionRowIndex

Tip: sectionRowIndex properti tidak memiliki nilai default.


Dukungan Browser

Internet ExplorerFirefoxOperaGoogle ChromeSafari

Semua browser utama mendukung properti sectionRowIndex


contoh

contoh

Pop THEAD, TBODY, tfoot koleksi Baris line di sini:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>本教程(w3big.com)</title>
<script>
function displayResult(x){
    alert("Section row index is: " + x.sectionRowIndex);
}
</script>
</head>
<body>

<table border="1">
    <thead>
        <tr onclick="displayResult(this)">
            <th>单击显示行下标</th>
        </tr>
        <tr onclick="displayResult(this)">
        <th>单击显示行下标</th>
        </tr>
</thead>
<tbody>
        <tr onclick="displayResult(this)">
        <td>单击显示行下标</td>
        </tr>
        <tr onclick="displayResult(this)">
        <td>单击显示行下标</td>
        </tr>
</tbody>
<tfoot>
        <tr onclick="displayResult(this)">
        <td>单击显示行下标</td>
        </tr>
        <tr onclick="displayResult(this)">
        <td>单击显示行下标</td>
        </tr>
</tfoot>
</table>

</body>
</html>

Coba »


tr Referensi Obyek benda tr