Atribut <input> autofocus HTML
Definisi dan penggunaan
autofocus
Properti ini menentukan bahwa elemen input harus mendapatkan fokus otomatis saat halaman dimuat.
autofocus
Properti ini adalah properti boolean.
Jika properti ini telah disetel, ia menentukan bahwa elemen <input> harus mendapatkan fokus otomatis saat halaman dimuat.
Contoh
Jadikan bidang "First name" mendapatkan fokus otomatis saat halaman dimuat:
<form action="/action_page.php"> <label for="fname">Nama:</label> <input type="text" id="fname" name="fname" autofocus><br><br> <label for="lname">Keluarga:</label> <input type="text" id="lname" name="lname"><br><br> <input type="submit"> </form>
Sintaks
<input autofocus>
Dukungan Browser
Angka di tabel menunjukkan versi browser pertama yang mendukung atribut ini penuh.
Chrome | Edge | Firefox | Safari | Opera |
---|---|---|---|---|
Chrome | Edge | Firefox | Safari | Opera |
5.0 | 11.0 | 4.0 | 5.0 | 9.6 |
Keterangan:autofocus
Atribut adalah atribut baru di HTML5.