chrome 下 autocomplete=off (禁止记住密码)不起作用解决方案:
不知道是否是CHROME一个BUG,按说不应该,但事实它确实存在。
因时间关系,懒得查阅官方资料,这类问题解锁容易,思路如下:
初始化设置控件为只读模式,并委托一个单击事件。
当用用户需要时操作时,必须单击该控件,点击控件时,解除只读模式,同时释放 onclick 事件。文章来源地址https://www.toymoban.com/news/detail-624309.html
<input type="password" name="textbox1" placeholder="输入密码" readonly data-click="setTextBox_readWrite" autocomplete="off" />
function setTextBox_readWrite(o) {
if (o.hasAttribute('readonly')) {
o.removeAttribute('readonly');
o.removeAttribute('data-click');
}
}
文章来源:https://www.toymoban.com/news/detail-624309.html
到了这里,关于chrome 下 autocomplete=off (禁止记住密码)不起作用解决方案的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!