我的 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 时,这就是我所需要的。
请帮我
提前致谢