Latest web development tutorials

Properti HTML DOM tabindex

Elemen Object Reference objek elemen


Definisi dan Penggunaan

tabindex set properti atau mengembalikan urutan tab tombol radio.

tatabahasa

HTMLElementObject.tabIndex=tabIndex


Dukungan Browser

Internet ExplorerFirefoxOperaGoogle ChromeSafari

Semua browser utama mendukung properti tabindex


contoh

contoh

tab Sortir untuk mengubah tiga link:

<html>
<head>
<script>
function changeTabIndex()
{
document.getElementById('1').tabIndex="3"
document.getElementById('2').tabIndex="2"
document.getElementById('3').tabIndex="1"
}
</script>
</head>
<body>

<p><a id="1" href="http://www.w3cschool.cc">1</a></p>
<p><a id="2" href="http://www.w3cschool.cc">2</a></p>
<p><a id="3" href="http://www.w3cschool.cc">3</a></p>

<input type="button" onclick="changeTabIndex()"
value="Change TabIndex">

</body>
</html>

Coba »


Elemen Object Reference objek elemen