Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经有带有id="myDiv"like的div标签
id="myDiv"
<div id="myDiv"></div>
是否可以使用显示消息
render div (id:'myDiv', 'text')
而不是创建一个新的 div 标签。
在您的 file.gsp 中,您可以使用模板作为建议 dmahapatro。
例如
控制器中的动作
//some code render (view: 'actionName', model: [text: text])
动作名称.gsp
//some code <div id="myDiv">${text}</div>