Spring Form,commandName 和 autocomplete=“off”

发布于 2024-12-04 08:34:14 字数 218 浏览 0 评论 0 原文

我想在表单上添加 autocomplete="off" 属性。我在表单上需要它,因为 Firefox 在各个输入元素上忽略它。

如果我尝试添加 Spring 表单标签,它不支持自动完成和 barfs。

如果我不使用弹簧表单,我将无法设置 commandName 属性。

任何人都可以想出一种方法让自动完成和 commandName 一起工作吗?

干杯, 彼得

I want to have the autocomplete="off" attribute on a form. I need it on the form because Firefox ignores it on the individual input elements.

The spring form tag does not support autocomplete and barfs if I try to add it.

If I don't use the spring form I am unable to set the commandName attribute.

Can anyone think of a way to get both autocomplete and commandName working together?

Cheers,
Peter

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

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

发布评论

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

评论(2

泅人 2024-12-11 08:34:14

spring form:inputform:password 标签 do 支持自动完成。而且它们工作得很好。
这是 Spring 表单 tld 参考

The spring form:input and form:password tags do support autocomplete. And they work just fine.
Here is the Spring form tld reference.

哭了丶谁疼 2024-12-11 08:34:14

您至少有 3 个选择:

  • 通过您自己的实现扩展原始表单标签,
  • 使用绑定标签而不是表单标签,然后您可以像以前一样编写 html 表单标签:请参阅 http://jroller.com/habuma/entry/spring_form_tags
  • 通过java脚本添加属性。例如,dojo 框架会帮助你

You have at least 3 choices:

  • extend the original form tag by your own implementation
  • use the bind tag instead of the form tag, then you can write the html form tag like you wast: see http://jroller.com/habuma/entry/spring_form_tags
  • add the attribute by java script. for example the dojo framework willl help you
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文