최신 웹 개발 튜토리얼
 

HTML autofocus Attribute


정의 및 사용

autofocus 속성은 부울 속성입니다.

존재하는 경우,이 요소가 자동으로 페이지가로드 될 때 초점을 얻을하도록 지정합니다.


적용

autofocus 속성은 다음과 같은 요소에 사용할 수 있습니다 :

집단 속성
<button> autofocus
<input> autofocus
<keygen> autofocus
<select> autofocus
<textarea> autofocus

Button

자동 초점과 A 버튼 :

<button type="button" autofocus>Click Me!</button>
»그것을 자신을 시도

Input

에 투입 "First name" 입력 필드가 자동으로 페이지가로드 될 때 초점을 얻을 :

<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>
»그것을 자신을 시도

Keygen

에 투입 "Encryption" 필드가 자동으로 페이지가로드 될 때 초점을 얻을 :

<form action="demo_keygen.asp" method="get">
  Username: <input type="text" name="usr_name">
  Encryption: <keygen name="security" autofocus>
  <input type="submit">
</form>
»그것을 자신을 시도

Textarea

있는 텍스트 영역 autofocus :

<textarea autofocus>
At w3ii.com you will learn how to make a website. We offer free tutorials in all web development technologies.
</textarea>
»그것을 자신을 시도

브라우저 지원

autofocus 속성은 각 요소에 대한 다음과 같은 브라우저 지원을하고있다 :

요소
form 5.0 10.0 4.0 5.0 9.6
input 5.0 10.0 4.0 5.0 9.6
keygen 지원되지 않음 지원되지 않음 6.0
textarea 10.0 4.0