HTML DOM 입력 재설정 자동 초점 속성은 HTML 요소의 자동 초점 속성과 연결됩니다. 이 속성은 페이지가 로드될 때 재설정 버튼에 자동으로 초점이 맞춰져야 하는지 여부를 설정하거나 반환하는 데 사용됩니다.
구문
다음은 −
의 구문입니다.자동 초점 속성 설정 -
resetObject.autofocus = true|false
여기에서 true는 재설정 버튼이 포커스를 받아야 함을 나타내고 false는 그렇지 않은 경우를 나타냅니다. 기본적으로 false로 설정되어 있습니다.
예시
입력 재설정 자동 초점 속성의 예를 살펴보겠습니다. -
<!DOCTYPE html> <html> <body> <h1> Reset Autofocus property</h1> <form style="border:solid 2px green;padding:2px"> UserName: <input type="text" id="USR"> <br> Location: <input type="text" id="Age"> <br><br> <input type="reset" id="RESET1" autofocus> </form> <p>Get the reset button autofocus property value by clicking the below button</p> <button type="button()" onclick="FocusVal()">CHECK</button> <p id="Sample"></p> <script> function FocusVal(){ var f = document.getElementById("RESET1").autofocus; document.getElementById("Sample").innerHTML = "The reset button autofocus property is set to: "+f; } </script> </body> </html>
출력
이것은 다음과 같은 출력을 생성합니다 -
CHECK 버튼을 클릭하면 -
위의 예에서 -
type=”reset”, id=”RESET1”인 요소를 만들었습니다. 이 버튼을 클릭하면 양식 데이터가 재설정됩니다. 이 버튼은 두 개의 텍스트 필드가 포함된 양식 내부에 있으며 양식에도 인라인 스타일이 적용되어 있습니다. −
<form style="border:solid 2px green;padding:2px"> UserName: <input type="text" id="USR"> <br> Location: <input type="text" id="Age"> <br><br> <input type="reset" id="RESET1"> </form>
그런 다음 사용자가 클릭할 때 FocusVal() 메서드를 실행할 CHECK 버튼을 만들었습니다.
<button type="button()" onclick="FocusVal()">CHECK</button>
FocusVal() 메서드는 getElementById() 메서드를 사용하여 유형이 재설정된 입력 요소를 가져오고 자동 초점 속성을 가져옵니다. autofocus 속성은 재설정 버튼 autofocus 속성 값에 따라 true와 false를 반환합니다. 이 값은 변수 f에 할당되고 innerHTML 속성 −
을 사용하여 id가 "Sample"인 단락에 표시됩니다.function FocusVal(){ var f = document.getElementById("RESET1").autofocus; document.getElementById("Sample").innerHTML = "The reset button autofocus property is set to: "+f; }로 설정되었습니다.