防止预加载密码文本框
我有一个输入类型为“password”的表单,并且它始终预加载我在 Firefox 中存储/保存的密码。
有什么方法可以设置输入字段不预加载密码吗?
I have a form with an input type="password" and it gets consistently preloaded with my stored/saved password in Firefox.
It there any way to set the input field to not preload the password?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用 IE 专有的
autocomplete="off"
属性,但不兼容 XHTML。并查看以下博客文章 用于在 FireFox 中强制执行它,它基本上使用计时器在页面加载后清除该值。You could try using the
autocomplete="off"
attribute which is proprietary to IE ans is not XHTML compliant. And checkout the following blog post for enforcing it in FireFox which basically uses a timer to clear the value after the page loads.