gnusraun

[DOM] Input elements should have autocomplete attributes (suggested: "current-password"): (More info: https://goo.gl/9p2vKq) input#userPw.form-control.form-control-use 본문

Frontend/HTML

[DOM] Input elements should have autocomplete attributes (suggested: "current-password"): (More info: https://goo.gl/9p2vKq) input#userPw.form-control.form-control-use

gnusraun 2023. 5. 16. 12:15
728x90

HTML autocomplete란?

사용자 입력 필드에 브라우저가 자동 완성 기능 제어

주로 input 태그 사용시 입력된 내용들을 볼 수 있다.

 

DOM (문서 객체 모델)에서 발생하는 경고 메시지입니다.

[DOM] Input elements sholud have autocomplete attributes

"입력 요소에는 자동 완성 속성을 가져야 합니다.”

 

하지만 type="password"를 가진 태그에서만 이런 경고 메시지가 표시됨

// autocomplete="off"로 지정하여 자동완성 기능 비활성화
<input type="password" value="" autocomplete="off"/>

 

 

 

728x90