프로그래밍/HTML
브라우저 자동화 완성 해제하기 autocomplate off
재우니
2015. 7. 28. 17:55
자동화 완성을 차단할려면, autocomplate 를 off 로 지정하고,
패스워드 필드 바로 위에 input box 를 hidden 하는 dummy 코드를 하나 심으면 된다.
<form method="post" autocomplete="off" action="">
<ul class="field-set">
<li>
<label>Username:</label>
<input type="text" name="acct" id="username" maxlength="100" size="20" autocomplete="off">
</li>
<li>
<label>Password:</label>
<input type="text" style="display:none;">
<input type="password" name="pswd" id="password" maxlength="16" size="20" autocomplete="off">
</li>
...
</ul> </form>