input的autocomplete属性

Posted 海量

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了input的autocomplete属性相关的知识,希望对你有一定的参考价值。

autocomplete="off"

1)当密码类型的input标签没有“autocomplete”属性名时,如:
<input type="password" name="password">
则增加“autocomplete”属性为“off”即可,修改为:
<input type="password" name="password" autocomplete="off">

input 的属性autocomplete 默认为on

其含义代表是否让浏览器自动记录之前输入的值

很多时候,需要对客户的资料进行保密,防止浏览器软件或者恶意插件获取到

可以在input中加入autocomplete="off" 来关闭记录

系统需要保密的情况下可以使用此参数

以上是关于input的autocomplete属性的主要内容,如果未能解决你的问题,请参考以下文章

input 的autocomplete属性

input 的属性autocomplete

form input autocomplete="off"属性不兼容问题

autocomplete 属性 清除input框输入存留历史值,防止下拉历史值显示

autocomplete="off" inpu属性

input清除输入历史记录