smarty 循环样式判断
单数行输出红色双数行输出绿色应该怎么写<table>{foreachfrom="$info"item="info"}<trstyle="background:red"><...
单数行输出红色 双数行输出绿色 应该怎么写
<table>
{foreach from="$info" item="info" }
<tr style="background:red">
<td><strong>{$info.user_name}<strong></td>
<td><strong>{$info.tel}<strong></td>
</tr>
{/foreach}
</tbody></table>
</table> 展开
<table>
{foreach from="$info" item="info" }
<tr style="background:red">
<td><strong>{$info.user_name}<strong></td>
<td><strong>{$info.tel}<strong></td>
</tr>
{/foreach}
</tbody></table>
</table> 展开
1个回答
展开全部
<table>
{foreach from="$info" item="info" name='in'}
{if $smarty.foreach.in.iteration %2 eq 1}
<tr style="background:red">
{else}
<tr style="background:green">
{/if}
<td><strong>{$info.user_name}<strong></td>
<td><strong>{$info.tel}<strong></td>
</tr>
{/foreach}
</tbody></table>
</table>
{foreach from="$info" item="info" name='in'}
{if $smarty.foreach.in.iteration %2 eq 1}
<tr style="background:red">
{else}
<tr style="background:green">
{/if}
<td><strong>{$info.user_name}<strong></td>
<td><strong>{$info.tel}<strong></td>
</tr>
{/foreach}
</tbody></table>
</table>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询