CSS 的 Grails 表单标签 ID 属性

发布于 2024-10-26 00:45:36 字数 272 浏览 2 评论 0原文

当你使用 grails 表单标签时,如何在渲染的 HTML 表单标签中拥有 id 选择器?

如果您使用

<g:form action="register" controller="registration" id="registrationform"/>

它将表单发布 URL 呈现为 /registration/register/registrationform

有没有办法提供渲染属性?

When you use grails form tag how can you have an id selector in the rendered HTML form tag?

If you use

<g:form action="register" controller="registration" id="registrationform"/>

it renders the form post URL as the /registration/register/registrationform.

Is there a way to provide a property that renders ?

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

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

发布评论

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

评论(1

最后的乘客 2024-11-02 00:45:36

最简单的方法是

<g:form action="register" controller="registration" name="registrationForm" />

name 属性将用于呈现 id 属性。

您还可以使用 URL 参数并传入操作和控制器的映射。

<g:form url="[action:'register', controller:'registration']" id="registrationForm" />

Easiest way is

<g:form action="register" controller="registration" name="registrationForm" />

The name attribute will be used to render the id attribute

You could also use the URL parameter and pass in a map for your action and controller.

<g:form url="[action:'register', controller:'registration']" id="registrationForm" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文