HTML DOM 입력 검색 자동 초점 속성은 HTML 요소의 자동 초점 속성과 연결됩니다. 이 속성은 페이지가 로드될 때 입력 검색 필드에 자동으로 포커스가 맞춰져야 하는지 여부를 설정하거나 반환하는 데 사용됩니다.
구문
다음은 −
의 구문입니다.자동 초점 속성 설정 -
searchObject.autofocus = true|false
여기서 true는 검색 필드가 포커스를 받아야 함을 나타내고 false는 그렇지 않은 경우를 나타냅니다. 기본적으로 false로 설정되어 있습니다.
예시
입력 검색 자동 초점 속성의 예를 살펴보겠습니다 -
<!DOCTYPE html> <html> <body> <h1>Input search autofocus property</h1> <form> FRUITS: <input type="search" id="SEARCH1" name="fruits" autofocus> </form> <p>Get the autofocus attribute value for the above search field by clicking the below button.</p> <button type="button" onclick="FocusVal()">CHECK FOCUS</button> <p id="Sample"></p> <script> function FocusVal() { var R = document.getElementById("SEARCH1").autofocus; document.getElementById("Sample").innerHTML = "The search field has autofocus property set to "+R; } </script> </body> </html>로 설정된 자동 초점 속성이 있습니다.
출력
이것은 다음과 같은 출력을 생성합니다 -
CHECK FOCUS 버튼을 클릭하면 -
위의 예에서 -
먼저 type=”search”, id=”SEARCH1”, name=”fruits”인 요소를 생성했으며 autofocus 속성이 true로 설정되어 있습니다. 검색 필드는 양식 안에 있습니다 -
<form> FRUITS: <input type="search" id="SEARCH1" name="fruits" autofocus> </form>
그런 다음 사용자가 클릭할 때 FocusVal() 메서드를 실행할 CHECK FOCUS 버튼을 만듭니다.
<button type="button" onclick="FocusVal()">CHECK FOCUS</button>
FocusVal() 메서드는 getElementById() 메서드를 사용하여 유형 검색이 있는 입력 요소를 가져오고 해당 자동 초점 속성을 가져옵니다. autofocus 속성은 검색 필드 autofocus 속성 값에 따라 true 및 false를 반환합니다. 이 값은 변수 f에 할당되고 innerHTML 속성 −
을 사용하여 id가 "Sample"인 단락에 표시됩니다.function FocusVal(){ var f = document.getElementById("SEARCH1").autofocus; document.getElementById("Sample").innerHTML = "The search field autofocus property is set to: "+f; }로 설정되었습니다.