autofocus 속성은 부울 속성입니다. 존재하는 경우 페이지가 로드될 때 요소가 자동으로 포커스를 받아야 함을 지정합니다. 아래에 예가 나와 있습니다.
<!DOCTYPE html> <html> <body> <form action = "/new.php"> First Name: <input type = "text" name = "fname" autofocus><br> Last Name: <input type = "text" name = "lname"><br> <input type="submit"> </form> </body> </html>