JS (Java Script)

provide an autocomplete attribute 에러

GABOJOK 2023. 8. 31. 10:53
에러메세지
A form field has an id or name attribute that the browser's autofill recognizes. However, it doesn't have an autocomplete attribute assigned. This might prevent the browser from correctly autofilling the form.
To fix this issue, provide an autocomplete attribute.
 
MDN 문서에 따르면 브라우저 판단 하에 자동완성 기능을 제공하는 속성임.
input에 뜬 경우 input태그의 속성값으로 autocomplete="off" 를 넣어주면 해결.
나는 자동완성 안쓸거라 off로 해줌.