'AutoComplete'에 해당되는 글 1건

  1. 2010.10.11 input 안에 'autocomplete' 사용시 w3c 에 위배되는거 수정...
반응형
<input type="text" autocomplete="off"/> <- 직접 기술한 건 잘못된 예


<input type="text" onfocus="this.setAttribute('autocomplete', 'off');"   /> <- 올바른 방법

Posted by 1010