개발자의 끄적끄적

[html/css] html input autocomplete off example / html input 자동완성 방지 설정방법 본문

개발/html & css

[html/css] html input autocomplete off example / html input 자동완성 방지 설정방법

효벨 2021. 11. 20. 01:00
728x90
반응형

[html/css] html input autocomplete off example / html input 자동완성 방지 설정방법

 

 

html input 태그

 

데이터를 입력하려고

 

클릭하면 자동완성기능때문에

 

이전에 입력했던 내용들이 나와서

 

불편한 경우가 있습니다!

 

그럴때는 아래 속성을 input 태그에 추가하시면 됩니다.

 

autocomplete="off"

 

속성이 추가된 input 태그는

 

아래와 같이 구성되게 됩니다!

 

<input type="text" autocomplete="off" />

 

참고들 하세요!

반응형
Comments