Definiție și utilizare
autofocus atribut este un atribut boolean.
Atunci când este prezent, se specifică faptul că elementul ar trebui să se concentreze în mod automat atunci când se încarcă pagina.
Se aplică la
autofocus atribut poate fi utilizat pe următoarele elemente:
element | Atribut |
---|---|
<button> | autofocus |
<input> | autofocus |
<keygen> | autofocus |
<select> | autofocus |
<textarea> | autofocus |
Exemple
Button Exemplu
Un buton cu autofocus:
<button type="button" autofocus>Click Me!</button>
Încearcă - l singur » Input Exemplu
Să "First name" câmpul de introducere a obține automat focalizarea atunci când se încarcă 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>
Încearcă - l singur » Keygen Exemplu
Să "Encryption" câmpul obține automat de focalizare atunci când se încarcă pagina:
<form action="demo_keygen.asp" method="get">
Username: <input type="text" name="usr_name">
Encryption: <keygen name="security" autofocus>
<input type="submit">
</form>
Încearcă - l singur » Textarea Exemplu
O zonă de text cu autofocus :
<textarea autofocus>
At w3ii.com you will learn how to make a website. We offer free
tutorials in all web development technologies.
</textarea>
Încearcă - l singur » Suport pentru browser-
autofocus
atribut are următorul suport de browser pentru fiecare element:
Element | |||||
---|---|---|---|---|---|
form | 5 | 10.0 | 4 | 5 | 9.6 |
input | 5 | 10.0 | 4 | 5 | 9.6 |
keygen | da | Nu sunt acceptate | Nu sunt acceptate | 6 | da |
textarea | da | 10.0 | 4 | da | da |