每个人都有圣杯
我正在尝试使用 groovy 创建一个项目列表,该列表包含三个项目和 n 个项目。现在,我的脚本只有一项横跨,n 项下降。这是我到目前为止所拥有的:
<g:each in="${Friends}" status="i" var="Friends">
<div style="position:relative; border:1px solid red; height:150px;width:150px">
<img src=${Friends[3]} ><br>${Friends[1]} <br>${Friends[2]} <br>
<input type="checkbox" name="email" value=${Friends[0]} />
<input type="hidden" name="fname" value=${Friends[1]}>
</div>
</g:each>
因此,对于 ${Friends} 中的每个项目,我想将其显示在网页上,但我希望它显示在一个网格中,该网格包含三个项目,向下 n/3 个项目。
感谢您的帮助 杰森
I am trying to use groovy to create a list of items that is three items across and n number of items down. right now, my script is just one item across and n items down. here is what i have so far:
<g:each in="${Friends}" status="i" var="Friends">
<div style="position:relative; border:1px solid red; height:150px;width:150px">
<img src=${Friends[3]} ><br>${Friends[1]} <br>${Friends[2]} <br>
<input type="checkbox" name="email" value=${Friends[0]} />
<input type="hidden" name="fname" value=${Friends[1]}>
</div>
</g:each>
So, for each item in ${Friends}, I want to display it on the web page but i want it to be displayed in a grid that is three items across and n/3 items down.
thanks for your help
jason
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我理解正确,只需添加相当于
循环中的第一个语句即可。
If I understand you correctly, just add the equivalent of
as the first statement in your loop.