是否可以禁用自动完成功能?

发布于 2024-09-19 17:50:08 字数 181 浏览 9 评论 0原文

我知道我不应该这样做,但向客户解释您应该通过浏览器进行操作可能会更容易。他们有一台公共计算机和一台以管理员帐户(我正在编写的代码)在计算机上运行的服务器。他们希望人们输入他们的信息,但他们不希望有人按下电子邮件输入框来显示人们的电子邮件地址。有没有办法可以通过 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

季末如歌 2024-09-26 17:50:08

使用非标准 autocomplete 属性:

autocomplete="off"

适用于所有现代浏览器。但会破坏 HTML 4 验证。 没有办法解决这个问题。在 HTML 5 中有效。

参考:

Use the non-standard autocomplete attribute:

autocomplete="off"

Works in all modern browsers. Will break HTML 4 validation, though. No way around that. Will be valid in HTML 5.

Reference:

酒绊 2024-09-26 17:50:08
<input name="name" autocomplete="off">
<input name="name" autocomplete="off">
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文