我的gsp中有以下行
<g:select name="platform" from="['Date','Time','Place','Calendar']"/>
我想在加载页面时自动选择时间选项。
<select>
<option value="Date">Date</option>
<option value="Time" selected="selected">Time</option>
<option value="Place">Place</option>
<option value="Calendar">Calendar</option>
</select>
当我的gsp页面被渲染成html时,这就是我需要的。
请帮帮我
提前致谢
答案 0 :(得分:1)
您可以通过设置g:选择值
来实现<g:select name="platform" from="['Date','Time','Place','Calendar']" value="'Time'"/>
但将它绑定到模型会更好。