CSS 的 Grails 表单标签 ID 属性
当你使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
最简单的方法是
name 属性将用于呈现 id 属性。
您还可以使用 URL 参数并传入操作和控制器的映射。
Easiest way is
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.