2022年5月30日

表单密码输入框type=password 设置 autocomplete 无效解决方法亲测有效


切图遇到的问题表单密码输入框type=password 设置 autocomplete 无效解决方法亲测有效,早期有个方法可以奏效autocomplete=”new-password” ,但是也不算好用,有时候也不管用,通过下面的方法可以完美解决。

当type=”password”时autocomplete=”off”、autocomplete=”new-password”均不管用解决方法:

将type设为text类型 type=”text”

并将输入框内容设置圆点显示,如下:

text-security:disc;
-webkit-text-security:disc;
-mox-text-security:disc;
eg:

html:
<input type=’text’ id=’inputId’/>

css:
#inputId{
text-security:disc;
-webkit-text-security:disc;
-mox-text-security:disc;

 

微信扫一扫二维码访问