首页 > 代码库 > smarty 换行实例 表格换行
smarty 换行实例 表格换行
在 foreach 中加入 key=count
<table>
<{foreach item=item from=$items key=count}>
<{if $count is div by 2}><tr>
<{/if}>
<td><{$item.name}></td>
<td><{$item.summary}></td>
<td><{$item.date}></td>
<{if ($count+1) is div by 2}></tr><{/if}>
<{/foreach}></table>
每行放置三個 <{$item.name}> 後換行 你喜欢换多少就改改参数就可以了!
<table>
<tr>
<{foreach item=item from=$items key=count}>
<td><{$item.name}></td>
<{if ($count+1) is div by 3}></tr><tr><{/if}>
<{/foreach}>
</tr></table>
另一種利用 cycle 來做換行的例子,但只能作到每行兩筆資料就換行的效果 只能换两行
<table>
<tr>
<{foreach item=item from=$items}>
<td><{$item.name}>
<{cycle values="</td>,</td></tr><tr>"}>
<{/foreach}>
</tr>
</table>
smarty 换行实例 表格换行
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。