GSP g:select 选项默认选择
是否有可能在 g:select
标记中默认选择选项字段?
我只在文档中看到了“noSelection”参数。
<g:select name="user.age" from="${18..65}" value="${age}"
noSelection="['':'-Choose your age-']"/>
但我需要从收到的数据中进行默认选择。
例如 18..65 是我的范围,我想选择 20 作为默认选择。
这是可能的还是我必须用javascript来做到这一点?
谢谢
Is there any possibility to select a option field by default in a g:select
tag?
I only saw the "noSelection" parameter in the documentation.
<g:select name="user.age" from="${18..65}" value="${age}"
noSelection="['':'-Choose your age-']"/>
But I need a default selection from the data I received.
For example 18..65 is my range and I want to select 20 as default selection.
Is that possible or do I have to do this with javascript?
Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
value
属性正是这样做的。来自 Grails 文档:因此,如果您想在
age
模型变量为 null 的情况下选择“20”,只需执行以下操作The
value
attribute does exactly that. From the Grails documentation:So, if you want to select "20" if your
age
model variable is null, just do