是否可以禁用自动完成功能?
我知道我不应该这样做,但向客户解释您应该通过浏览器进行操作可能会更容易。他们有一台公共计算机和一台以管理员帐户(我正在编写的代码)在计算机上运行的服务器。他们希望人们输入他们的信息,但他们不希望有人按下电子邮件输入框来显示人们的电子邮件地址。有没有办法可以通过 IE 中的代码禁用此功能? (我相信他们正在使用 6,但他们可能会使用 7 或 8)。
I know i shouldnt do it but it may be easier then explaining to the clients that you should do it through the browser. They have a public computer and a server running on the machine in an admin account (the code i am writing). They want people to enter their information but they dont want someone pressing down on the email input box to display ppls email address. Is there a way i can disable this through code in IE? (i believe they are using 6 but they may use 7 or 8).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用非标准
autocomplete
属性:适用于所有现代浏览器。但会破坏 HTML 4 验证。 没有办法解决这个问题。在 HTML 5 中有效。
参考:
Mozilla:如何关闭表单自动完成
IE:在 HTML 表单中使用自动完成
Use the non-standard
autocomplete
attribute:Works in all modern browsers. Will break HTML 4 validation, though. No way around that. Will be valid in HTML 5.
Reference:
Mozilla: How to Turn Off Form Autocompletion
IE: Using AutoComplete in HTML Forms