码迷,mamicode.com
首页 > 其他好文 > 详细

input标签自动填充问题

时间:2019-12-09 12:02:44      阅读:245      评论:0      收藏:0      [点我收藏+]

标签:class   bsp   标签   str   size   浏览器   手机   密码   inpu   

<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标签自动填充问题

标签:class   bsp   标签   str   size   浏览器   手机   密码   inpu   

原文地址:https://www.cnblogs.com/pyspang/p/12009842.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!