如何使用grails select tag
在select标签选项中显示值10,15,20,25<g:select name="maxpage" from="${10..30}" />
10
15
20
25 。 。 。 1000
我想以这种格式显示
答案 0 :(得分:4)
只需使用数组作为from
属性:
<g:select name="maxpage" from="${[10,15,20,25]}" />
的更新强> 的
假设您想要在10到1000之间进行选择,步数为5,您可以尝试:
<g:select name="maxpage" from="${(10..1000).step(5)}" />