Input Week 자동 초점 속성은 Input Week가 초기 페이지 로드에 초점을 맞추는지 여부를 설정/반환합니다.
구문
다음은 구문입니다 -
- 부울 값 반환 - true/false
inputWeekObject.autofocus
- 자동 초점을 booleanValue로 설정
inputWeekObject.autofocus = booleanValue
부울 값
여기 "booleanValue" 다음과 같을 수 있습니다 -
booleanValue | 세부정보 |
---|---|
참 | 페이지 로드 시 입력에 자동 초점이 맞춰지도록 정의합니다. |
거짓 | 기본값이며 입력은 자동 초점이 되지 않습니다. |
예시
입력 주 자동 초점의 예를 살펴보겠습니다. 속성 -
<!DOCTYPE html> <html> <head> <title>Input Week 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>Week-autofocus</legend> <label for="WeekSelect">Target Week : <input type="week" id="WeekSelect" value="2019-W24" autofocus> </label> <input type="button" onclick="removeAutofocus()" value="Remove Autofocus"> <div id="divDisplay"></div> </fieldset> </form> <script> var divDisplay = document.getElementById("divDisplay"); var inputWeek = document.getElementById("WeekSelect"); divDisplay.textContent = 'Autofocus: '+inputWeek.autofocus; function removeAutofocus() { inputWeek.autofocus = false; divDisplay.textContent = 'Autofocus: '+inputWeek.autofocus; } </script> </body> </html>
출력
이것은 다음과 같은 출력을 생성합니다 -
'자동 초점 제거'를 클릭하기 전에 버튼 -
'자동 초점 제거'를 클릭한 후 버튼 -