自动完成功能,只需把AUTOCOMPLETE设为off即可,如:
整个表单禁止自动完成
- HTML code
- <FORM method=post action="submit.asp" AUTOCOMPLETE="OFF">
禁止文本框自动完成
- HTML code
- <input type="text" name="creditcard" maxlength="16" AUTOCOMPLETE="OFF">
在脚本中禁止自动完成
- HTML code
-
function init(){ element.setAttribute("AutoComplete", "off");}