html输入框去除记忆功能

自动完成功能,只需把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");
}
posted @ 2016-11-10 10:31  yaoh371  阅读(7260)  评论(0编辑  收藏  举报