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'> ## 密码输入框
当然每个人遇到的情况不一样,如果这都不能解决问题,请继续找寻下一个解决方案吧!
你的坚持 ------ 终将美好 ~