input标签自动填充问题

Posted pyspang

tags:

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

<input type=‘text‘ placeholder=‘手机号‘ />
<input type=‘text‘ placeholder=‘地址‘ />
<input type="password" placeholder="密码">  ## 密码输入框

如上面的一些输入框, 在谷歌浏览器中,可能会对属性 type = ‘password‘ 进行识别,并且会把 密码输入框 前面一个输入框当做 账号输入框 来自动填充;

当时在这两个输入框中加多一个属性就可以了, autocomplete=‘new-password‘

 

<input type=‘text‘ placeholder=‘地址‘ autocomplete=‘new-password‘ />
<input type="password" placeholder="密码" autocomplete=‘new-password‘>  ## 密码输入框

 

当然每个人遇到的情况不一样,如果这都不能解决问题,请继续找寻下一个解决方案吧!

 

以上是关于input标签自动填充问题的主要内容,如果未能解决你的问题,请参考以下文章

解决谷歌input自动填充问题

input标签自动填充问题

Android Place自动填充片段:无法设置文字

解决Google浏览器保存密码自动填充

如何隐藏 Safari 中 input 标签的 autofill 图标

VSCODE 片段 PHP 自动填充命名空间