에러메세지
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로 해줌.
'JS (Java Script)' 카테고리의 다른 글
.text() 와 .innerText 에 대하여 (0) | 2023.08.31 |
---|---|
ajax 에서 succesee 와 .done 의 차이 (0) | 2023.08.31 |
input 태그 안에 변화를 감지하는 이벤트리스너 (change 하거나 input 하거나.) (0) | 2023.08.31 |
.dataset 과 data- (0) | 2023.08.31 |
confirm() 함수 (0) | 2023.08.29 |