HTML DOM 입력 URL 자동 초점 속성은 입력 URL이 초기 페이지 로드에 초점이 맞춰져 있는지 여부를 설정/반환합니다.
구문
다음은 구문입니다 -
- 부울 값 반환 - true/false
inputURLObject.autofocus
- 자동 초점을 booleanValue로 설정
inputURLObject.autofocus = booleanValue
부울 값
여기 "booleanValue" 다음과 같을 수 있습니다 -
부울 값 | 세부정보 |
---|---|
사실 | 페이지 로드 시 입력이 자동으로 초점이 맞춰지도록 정의합니다. |
거짓 | 기본값이며 입력에 자동 초점이 맞지 않습니다. |
예시
입력 URL 자동 초점의 예를 살펴보겠습니다. 속성 -
<!DOCTYPE html> <html> <head> <title>Input URL autofocus</title> <style> form { width:70%; margin: 0 auto; text-align: center; } * { padding: 2px; margin:5px; } input[type="button"] { border-radius: 10px; } </style> </head> <body> <form> <fieldset> <legend>URL-autofocus</legend> <label for="URLSelect">URL : <input type="url" id="URLSelect" placeholder="https://www.google.com" autofocus> </label> <input type="button" onclick="removeAutofocus()" value="Remove Autofocus"> <div id="divDisplay"></div> </fieldset> </form> <script> var divDisplay = document.getElementById("divDisplay"); var inputURL = document.getElementById("URLSelect"); divDisplay.textContent = 'Autofocus: '+inputURL.autofocus; function removeAutofocus() { inputURL.autofocus = false; divDisplay.textContent = 'Autofocus: '+inputURL.autofocus; } </script> </body> </html>
출력
이것은 다음과 같은 출력을 생성합니다 -
'자동 초점 제거'를 클릭하기 전에 버튼 -
'자동 초점 제거'를 클릭한 후 버튼 -