Definizione e utilizzo
La autofocus attributo è un attributo booleano.
Quando è presente, specifica che l'elemento dovrebbe ottenere automaticamente a fuoco quando la pagina viene caricata.
Si applica a
L' autofocus attributo può essere utilizzato sui seguenti elementi:
Elementi | Attributo |
---|---|
<button> | autofocus |
<input> | autofocus |
<keygen> | autofocus |
<select> | autofocus |
<textarea> | autofocus |
Esempi
Button Esempio
Un pulsante con messa a fuoco automatica:
<button type="button" autofocus>Click Me!</button>
Prova tu stesso " Input Esempio
Lasciate che il "First name" campo di input ottenere automaticamente messa a fuoco quando viene caricata la pagina:
<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>
Prova tu stesso " Keygen Esempio
Lasciate che la "Encryption" campo ottenere automaticamente messa a fuoco quando viene caricata la pagina:
<form action="demo_keygen.asp" method="get">
Username: <input type="text" name="usr_name">
Encryption: <keygen name="security" autofocus>
<input type="submit">
</form>
Prova tu stesso " Textarea Esempio
Un'area di testo con autofocus :
<textarea autofocus>
At w3ii.com you will learn how to make a website. We offer free
tutorials in all web development technologies.
</textarea>
Prova tu stesso " Supporto per il browser
La autofocus
attributo ha la seguente supporto del browser per ogni elemento:
Elemento | |||||
---|---|---|---|---|---|
form | 5.0 | 10.0 | 4.0 | 5.0 | 9.6 |
input | 5.0 | 10.0 | 4.0 | 5.0 | 9.6 |
keygen | sì | Non supportato | Non supportato | 6.0 | sì |
textarea | sì | 10.0 | 4.0 | sì | sì |