我几个小时后一直在寻找这个问题,但是找不到任何合适的解决方案来解决这个问题,问题是每次我保存表单值时我的页面上都有三个输入表单它要求我保存密码chrome如何使用JavaScript或查询解决此问题
<input type="password" autocomplete="off"/>
我已经尝试了autocomplete='off'
但它不起作用
答案 0 :(得分:3)
最好的方法是将密码类型更改为文本,并用您喜欢的任何星号或圆点替换字符。
change <input type="password" /> to <input type="text" id="password" style="-webkit-text-security: disc;"/>
还有其他选择:
input { -webkit-text-security: none; }
input { -webkit-text-security: circle; }
input { -webkit-text-security: square; }
input { -webkit-text-security: disc; /* Default */ }
答案 1 :(得分:0)
autocomplete="off"
是正确的代码,但许多浏览器不想支持它。他们希望让用户选择而不是代码本身。所以你可以写它,但浏览器可以选择不读它。