smarty 里面的选择器,cycle 两个相同box之间不同的显示

By | 2012 年 4 月 12 日

{cycle} 用于在值集合中轮换。便于实现下述情况,在一个表格中交替输出两种或多种颜色,在值数组中循环

class="<{cycle values="odd,even"}>"

或者

Example  {cycle}

{section name=rows loop=$data}
<tr bgcolor="<{cycle values="#eeeeee,#d0d0d0"}>">
<td><{$data[rows]}></td>
</tr>
{/section}
The above template would output:
<tr bgcolor="#eeeeee"><td>1</td></tr>
<tr bgcolor="#d0d0d0"><td>2</td></tr>
<tr bgcolor="#eeeeee"><td>3</td></tr>

发表回复

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据