Home > Backend Development > PHP Tutorial > Smarty最简单实现列表奇偶变色的方法_PHP

Smarty最简单实现列表奇偶变色的方法_PHP

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-05-30 08:45:44
Original
889 people have browsed it

本文实例讲述了Smarty最简单实现列表奇偶变色的方法。分享给大家供大家参考。具体如下:

最近在换模板的过程中遇到过一个问题:列表页隔行换色,本来想用程序实现的,但在网上发现smarty模板中有一个很方便的方法,特分享一下:

{section name=cat loop=$list} 
  <tr bgcolor="{cycle values="#FFFFFF,#CCCCCC"}"> 
   <td>{$list[cat].id}</td>  
  </tr> 
{/section}
Copy after login

希望本文所述对大家的smarty模板程序设计有所帮助。

Related labels:
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
smarty turns on caching garbled characters
From 1970-01-01 08:00:00
0
0
0
Why does tp use smarty template? ?
From 1970-01-01 08:00:00
0
0
0
How do you use smarty to integrate laravel5?
From 1970-01-01 08:00:00
0
0
0
Two ways to install smarty
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template