织梦列表调用列表显示数字顺序标签大全

分类栏目:入门教程

569

笔者在做网站的时候经常遇到一些问题,比如栏目列表调用或者文章列表调用前面的数字如何显示?
下面来说一个在织梦dedecms列表页我们可以使用autoindex和itemindex来实现多种样式的用法;
大家在使用autoindex的时候有时候从1开始,有时候从0开是,下面介绍下什么情况下从0,1开始:

autoindex/itemindex 可以使用 @me+1;  更改数字自由定义开始的数字  不懂往下看
 

arclist 标签下使用 [field:global.autoindex/] 默认从1开始

{dede:arclist row='10' titlelen='48' typeid='1' channelid='1'}

从1开始:[field:global runphp='yes' name=autoindex][/field:global]或者[field:global.autoindex/]

从0开始:[field:global runphp='yes' name=autoindex]@me=@me-1;[/field:global]

{/dede:arclist}

 

channel 标签下使用 [field:global.autoindex/] 默认从0开始

{dede:channel row='5' type='top'}

从0开始:[field:global runphp='yes' name=autoindex][/field:global]或者[field:global.autoindex/]

从1开始:[field:global runphp='yes' name=autoindex]@me=@me+1;[/field:global]

{/dede:channel}

 

channelartlist 标签下使用 {dede:global.itemindex/} 默认从1开始

{dede:channelartlist row='4'}

从1开始:{dede:global name=itemindex runphp='yes'}{/dede:global}或者{dede:global.itemindex/}

从1开始:{dede:global name=itemindex runphp='yes'}@me=@me-1;{/dede:global}

{/dede:channelartlist}

 

list  到第10条时输出<br/>,否则输出空

循环到第几条加条线同理

{dede:list pagesize='40' orderby='id'} 

<li><a title="[field:title function='htmlspecialchars(@me)'/] " href="[field:arcurl /]">[field:title /]</a></li>

[field:global name='autoindex' runphp='yes']if(@me%10==0){@me="<br/>";}else{@me='';}[/field:global]  

{/dede:list}