Ruby on Rails,自动完成 => “关闭”在文本输入字段中,不适用于 Firefox

发布于 2024-08-31 20:40:37 字数 162 浏览 4 评论 0原文

我在 Rails 中有一个 text_field 和一个 text_area,我想禁用浏览器的自动完成功能。在文本字段、文本区域或表单本身中设置属性似乎不会使浏览器停止尝试自动完成。这是针对 OS X 上的 Firefox 3.6.3 的。也许这更多的是浏览器问题而不是 RoR 问题。

谢谢!

I have both a text_field and a text_area in Rails, and I want to disable the browser's auto-complete. Setting the attribute in either the text_field, text_area, or in the form itself, doesn't seem to make the browser stop trying to auto-complete. This is for Firefox 3.6.3 on OS X. Maybe it's more a browser issue than a RoR issue.

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

混吃等死 2024-09-07 20:40:37

您页面上的查看源是什么样的?我在 FF 3.6.3 OSX 中尝试过,它有效。

<html>
<head>
</head>
<body>
<form>
  <input type="text" name="name" autocomplete="off"/>
</form>
</body>
</html>

删除自动完成功能使其自动完成。也许您有一个覆盖默认行为的插件。

What's the view source on your page look like? I tried this in FF 3.6.3 OSX and it worked.

<html>
<head>
</head>
<body>
<form>
  <input type="text" name="name" autocomplete="off"/>
</form>
</body>
</html>

Taking out the autocomplete made it autocomplete. Maybe you have a plugin overriding the default behavior.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文