HTML5는 다음과 같이 사용되는 autofocus라는 새로운 속성을 도입했습니다.
<input type = "text" name = "search" autofocus/>
이 속성은 최신 버전의 Mozilla, Safari 및 Chrome 브라우저에서만 지원됩니다.
예시
다음 코드를 실행하여 자동 초점 속성을 사용하는 방법을 배울 수 있습니다.
<!DOCTYPE HTML> <html> <body> <form action = "/cgi-bin/html5.cgi" method = "get"> Enter email : <input type = "text" name = "newinput" autofocus/> <p>Try to submit using Submit button</p> <input type = "submit" value = "submit" /> </form> </body> </html>