Grails 按钮语法
嘿。是否有像这样的特殊标签:
<g:link controller="xx" action="yy_" id="${it.id}">
</g:link>
不需要表单,但用按钮代替 textLink ?
Hey. Is there any special tag like this one:
<g:link controller="xx" action="yy_" id="${it.id}">
</g:link>
that don't need a form, but instead of a textLink is a button ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
实际上你已经完成了一半。就像在纯 HTML 中一样,只需将按钮放在标签内即可。您可以使用 grails 中的标准按钮 CSS 样式。
它看起来像这样:
You actually have it half done already. Just like in plain HTML, just put the button INSIDE the tag. You can use the standard button CSS styling from grails.
Here's what it would look like:
创建
create a
<button>
element, or an<img>
or<a>
element, then use the createLink tag to generate the URL that it requests when clicked您可以在链接标记中放置一个
或
,其样式看起来像您想要的那样......
you could just put a
<div>
or<img>
in the link tag that is styled to look the way you want...