Definisi dan Penggunaan
The autofocus atribut atribut boolean.
Ketika hadir, itu menetapkan bahwa elemen harus secara otomatis mendapatkan fokus ketika beban halaman.
Berlaku untuk
The autofocus atribut dapat digunakan pada unsur-unsur berikut:
elemen | Atribut |
---|---|
<button> | autofocus |
<input> | autofocus |
<keygen> | autofocus |
<select> | autofocus |
<textarea> | autofocus |
contoh
Button Contoh
Sebuah tombol dengan autofocus:
<button type="button" autofocus>Click Me!</button>
Cobalah sendiri " Input Contoh
Biarkan "First name" field input secara otomatis mendapatkan fokus ketika beban halaman:
<form action="demo_form.asp">
First name: <input type="text" name="fname" autofocus><br>
Last name: <input type="text" name="lname"><br>
<input type="submit">
</form>
Cobalah sendiri " Keygen Contoh
Biarkan "Encryption" lapangan secara otomatis mendapatkan fokus ketika beban halaman:
<form action="demo_keygen.asp" method="get">
Username: <input type="text" name="usr_name">
Encryption: <keygen name="security" autofocus>
<input type="submit">
</form>
Cobalah sendiri " Textarea Contoh
Sebuah area teks dengan autofocus :
<textarea autofocus>
At w3ii.com you will learn how to make a website. We offer free
tutorials in all web development technologies.
</textarea>
Cobalah sendiri " Dukungan Browser
The autofocus
atribut memiliki dukungan browser berikut untuk setiap elemen:
Elemen | |||||
---|---|---|---|---|---|
form | 5.0 | 10,0 | 4.0 | 5.0 | 9.6 |
input | 5.0 | 10,0 | 4.0 | 5.0 | 9.6 |
keygen | iya nih | Tidak didukung | Tidak didukung | 6.0 | iya nih |
textarea | iya nih | 10,0 | 4.0 | iya nih | iya nih |