HTML DOM 입력 URL 자동 완성 속성은 자동 완성의 활성화 여부를 설정/반환합니다. 활성화하면 이전에 입력한 값이 표시됩니다.
구문
다음은 구문입니다 -
- 반환 값 - 켜기/끄기
inputURLObject.autocomplete
- 자동 완성 설정 가치를
inputURLObject.autocomplete = value
값
여기서 '가치' 다음과 같을 수 있습니다 -
값 | 세부정보 |
---|---|
켜기 | 입력에 자동 완성 속성이 활성화되어 있음을 정의합니다. |
끄기 | 입력 자동 완성 속성이 비활성화되었음을 정의합니다. |
예시
입력 URL 자동 완성의 예를 살펴보겠습니다. 속성 -
<!DOCTYPE html> <html> <head> <title>Input URL autocomplete</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-autocomplete</legend> <label for="URLSelect">URL : <input type="url" id="URLSelect" placeholder="eg: https://www.xyz.com/" autocomplete="off" autofocus> </label> <input type="button" onclick="addAutocomplete()" value="Enable Suggestions"> <div id="divDisplay"></div> </fieldset> </form> <script> var divDisplay = document.getElementById("divDisplay"); var inputURL = document.getElementById("URLSelect"); divDisplay.textContent = 'Suggestions: '+inputURL.autocomplete; function addAutocomplete() { inputURL.autocomplete = 'on'; divDisplay.textContent = 'Suggestions: '+inputURL.autocomplete; } </script> </body> </html>
출력
이것은 다음과 같은 출력을 생성합니다 -
'제안 활성화'를 클릭하기 전에 버튼 -
'제안 활성화'를 클릭한 후 버튼 -