使用文章列表隔行換色可以讓顯示的兩條內容有所區別,很多網站在列表頁裡都採用了隔行換色的顯示方法,下面我就把在dedecms v5.7 中實作隔行換色的程式碼貼上來,讓各位喜歡dedecms的朋友可以參考以下程式碼進行修改,以實現自己想要的顯示效果。
列表隔5行加上一行線: (建議學習:織夢cms)
{dede:list pagesize='50'} <LI><a href="[field:arcurl /]" title="[field:title function='htmlspecialchars(@me)'/]" target=_blank>[field:title function="cn_substr(@me,48)"/]</a>[field:pubdate runphp='yes'] $a="<font color=red>".strftime('%m-%d',@me)."</font>"; $b=strftime('%m-%d',@me); $ntime = time(); $day3 = 3600 * 24; if(($ntime - @me) < $day3) @me = $a; else @me =$b; [/field:pubdate]<br> [field:global name=autoindex runphp="yes"] if(@me%5==0)@me="<hr />"; else @me=""; [/field:global] {/dede:list} <DIV></DIV></LI>
以上是織夢dedecms文章列表「隔行換色」效果的詳細內容。更多資訊請關注PHP中文網其他相關文章!