Najnowsze tutoriale tworzenie stron internetowych
 

HTML autofocus Attribute


Definicja i Wykorzystanie

autofocus atrybut jest atrybutem logiczna.

Gdy występuje, to wskazuje, że element powinien automatycznie się skupić podczas wczytywania strony.


Dotyczy

autofocus atrybut może być stosowany na następujących elementach:

Elementy Atrybut
<button> autofocus
<input> autofocus
<keygen> autofocus
<select> autofocus
<textarea> autofocus

Przykłady

Button Przykład

Przycisk z autofokusem:

<button type="button" autofocus>Click Me!</button>
Spróbuj sam "

Input Przykład

Niech "First name" pole wprowadzania automatycznie się skupić podczas wczytywania strony:

<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>
Spróbuj sam "

Keygen Przykład

Niech "Encryption" field automatycznie się skupić podczas wczytywania strony:

<form action="demo_keygen.asp" method="get">
  Username: <input type="text" name="usr_name">
  Encryption: <keygen name="security" autofocus>
  <input type="submit">
</form>
Spróbuj sam "

Textarea Przykład

Obszar tekstowy z autofocus :

<textarea autofocus>
At w3ii.com you will learn how to make a website. We offer free tutorials in all web development technologies.
</textarea>
Spróbuj sam "

Pomoc Browser

autofocus atrybut posiada następujące wsparcie przeglądarki dla każdego elementu:

Element
form 5,0 10,0 4,0 5,0 9,6
input 5,0 10,0 4,0 5,0 9,6
keygen tak Nieobsługiwany Nieobsługiwany 6,0 tak
textarea tak 10,0 4,0 tak tak