HTML DOM 입력 Password autofocus 속성은 HTML 요소의 autofocus 속성과 연결됩니다. 이 속성은 페이지가 로드될 때 입력된 비밀번호 필드에 자동으로 포커스가 맞춰져야 하는지 여부를 설정하거나 반환하는 데 사용됩니다.
구문
다음은 −
구문입니다.자동 초점 속성 설정 -
passwordObject.autofocus = true|false
여기서 true는 암호 필드에 포커스가 있어야 함을 나타내고 false는 그렇지 않으면 나타냅니다. 기본적으로 false로 설정되어 있습니다.
예시
Input Password autofocus 속성에 대한 예를 살펴보겠습니다. -
<!DOCTYPE html> <html> <body> <h1>Input password autofocus property</h1> Password: <input type="password" id="PASS" autofocus> <br><br> <button onclick="FocusVal()">CHECK FOCUS</button> <p id="Sample"></p> <script> function FocusVal() { var P = document.getElementById("PASS").autofocus; document.getElementById("Sample").innerHTML = "The password field has autofocus property set to "+P; } </script> </body> </html>
출력
이것은 다음과 같은 출력을 생성합니다 -
CHECK FOCUS 버튼 클릭 시 -
위의 예에서 -
유형이 "password"이고 id가 "Pass"인 입력 필드를 만들었으며 autofocus 속성이 활성화되어 있습니다. 즉 true로 설정됩니다 -
Password: <input type="password" id="PASS" autofocus>
그런 다음 사용자가 클릭할 때 FocusVal() 메서드를 실행하는 CHECK FOCUS 버튼을 만들었습니다.
<button onclick="FocusVal()">CHECK FOCUS</button>
FocusVal() 메서드는 getElementById() 메서드를 사용하여 암호 유형의 입력 요소를 가져오고 자동 초점 속성을 가져옵니다. autofocus 속성은 요소 autofocus 속성 값에 따라 true와 false를 반환합니다. 이 값은 변수 P에 할당되고 innerHTML 속성 −
을 사용하여 id가 "Sample"인 단락에 표시됩니다.function FocusVal() { var P = document.getElementById("PASS").autofocus; document.getElementById("Sample").innerHTML = "The password field has autofocus property set to "+P; }