如何禁用保存密码提示在chrome

how to disable save password prompt in chrome

本文关键字:chrome 提示 密码 何禁用 保存      更新时间:2023-09-26

我已经搜索了几个小时这个问题,但没有找到任何合适的解决方案,问题是我有三个输入表单在我的页面上每次我保存表单值它要求我在chrome中保存密码我怎么能解决这个问题使用JavaScript或查询

 <input type="password"  autocomplete="off"/>

我已经尝试过autocomplete='off',但它不工作

最好的方法是将密码类型更改为文本,并将字符替换为星号或点。

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 */ }

autocomplete="off"是正确的代码,但是许多浏览器不希望支持它。他们想让用户选择,而不是代码本身。所以你可以写,但是浏览器可以选择不读