每个人都有圣杯

发布于 2024-12-06 04:44:55 字数 656 浏览 0 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

極樂鬼 2024-12-13 04:44:55

如果我理解正确,只需添加相当于

if i % 3 == 0 { print a <br/> }

循环中的第一个语句即可。

If I understand you correctly, just add the equivalent of

if i % 3 == 0 { print a <br/> }

as the first statement in your loop.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文