DedeCms autoindex和itemindex使用介绍

autoindex/itemindex 可以使用 @me+1;实现由指定数字开始,下面为大家详细介绍下具体的两者具体的用法,感兴趣的朋友可以参考下

代码如下:

<span style="color: rgb(51, 51, 51); font-family: 宋体, arial, helvetica, sans-serif; font-size: 14px; line-height: 26px; "></span>

让dedecms autoindex,itemindex 从0到1开始的办法

代码如下:

[field:global name=autoindex runphp="yes"]@[email protected]+1;[/field:global] 
{dede:global name=itemindex runphp="yes"}@[email protected]+1;{/dede:global}

autoindex itemindex 的使用心得区别 
channelartlist 标签下使用 {dede:global name=‘itemindex‘ runphp=‘yes‘}@me;{/dede:global} 
自增1 
arclist 标签下使用 [field:global.autoindex/] 默认从1开始 
channel 标签下使用 [field:global.autoindex/] 默认从0开始 
channelartlist 标签下使用 {dede:global.itemindex/} 默认从1开始

arclist 从0开始[field:global name=autoindex runphp="yes"]@[email protected];[/field:global] 
channel 从1开始[field:global name=autoindex runphp="yes"]@[email protected]+1;[/field:global][field:typename/] 
channelartlist 从0开始{dede:global name=itemindex runphp=‘yes‘}@[email protected];{/dede:global}

<div id="h_pd_lm_{dede:global.itemindex/}" {dede:global name=‘itemindex‘ runphp=‘yes‘}@me=(@me==1)?‘‘:‘style="display:none;"‘;{/dede:global} class="pd2_lmc_l1">

channelartlist实例

代码如下:

{dede:channelartlist notypeid=‘123,124,146,147‘} 
<a class="pd2_lmt{dede:global name=itemindex runphp=‘yes‘}@me=(@me==1)?‘1‘:‘3‘;{/dede:global}"onmouseover="showitem2({dede:global name=itemindex runphp=‘yes‘}@[email protected];{/dede:global},‘pd_lm‘,‘h_pd_lm_‘,‘pd2_lmt‘);" href=‘{dede:field name=‘typeurl‘/}‘> 
{dede:php}if($refObj->Fields[‘ispart‘]){echo $refObj->Fields[‘typename‘];}{/dede:php} 
</a> 
{/dede:channelartlist}

标签下使用 [field:global name=autoindex/] 
channel实例

代码如下:

{dede:channel titlelen=‘32‘} 
<li [field:global name=‘autoindex‘runphp=‘yes‘]if(@me%2==0){@me=‘class="rr"‘;}else{@me=‘‘;}[/field:global] ><h3><a href=‘[field:typelink/]‘>[field:typename/]</a></h3></li> 
{/dede:channel}

在arclist中使用autoindex runphp 时用这种方式:

代码如下:

{dede:arclist titlelen=‘22‘ row=‘4‘ flag=‘c‘ orderby=‘id‘} 
<a href="[field:arcurl /]" target="_blank">[field:title /]</a> 
[field:global name=‘autoindex‘ runphp=‘yes‘]if(@me==2){@me="
";}else{@me=‘ ‘;}[/field:global]{/dede:arclist}

自增1 
[field:global.autoindex/] 
arclist实例

代码如下:

{dede:arclist channelid=17 row=6 orderby=pubdate titlelen=40 addfields=‘docphoto,docjob,doctec‘typeid=‘123,136,146,155,172,182,202‘} 
<div id="h_nrr_zj_[field:global.autoindex/]"class="nrr_zjl" [field:global name=‘autoindex‘runphp=‘yes‘]if(@me==1){@me="";}else{@me=‘style="display:none;"‘;}[/field:global] > 
<div><a href="[field:arcurl/]" title="[field:fulltitle/]" target="_blank"><img src="[field:litpic/]"alt="[field:fulltitle/]" /></a></div> 
</div> 
{/dede:arclist}

如何自由定义 开始的数字 
autoindex/itemindex 可以使用 @me+1;实现由指定数字开始 
遇到类似的问题做下这个笔记,在用到的时候可以灵活发挥! 
list 标签下试用autoindex

代码如下:

{dede:list pagesize=‘40‘ orderby=‘id‘} 
[field:global name=‘autoindex‘ runphp=‘yes‘]if(@me%10==0){@me="test";}else{@me=‘‘;}[/field:global] 
{/dede:list}

对autoindex/itemindex使用自定义函数 
先在include/extend.fun.php里添加自定义函数

代码如下:

function MyPosition($p){ 
$positionArr=array(275,330,380,435,495,547); 
return $positionArr[$p];

然后在模板里添加

代码如下:

{dede:channel type=‘son‘ typeid=‘13‘ row=‘6‘ noself=‘yes‘} 
<!-----侧栏菜单------------------> 
<div id=‘pdv_16795‘ class=‘pdv_class‘ title=‘‘ style="width:71px;height:20px;top:[field:global.autoindex function=‘MyPosition(@me)‘/]px;left:136px; z-index:17"> 
<div style="FONT-FAMILY: SimSun; COLOR: #fecd2e; FONT-SIZE: 15px; fon-weight: bold"><a style="FONT-FAMILY: SimSun; COLOR: #fecd2e; FONT-SIZE: 15px; fon-weight: bold" href="[field:typeurl/]" target=_blank><strong>[field:typename/]</strong></a></div> 
</div> 
{/dede:channel}

时间: 2024-10-18 05:07:31

DedeCms autoindex和itemindex使用介绍的相关文章

织梦dedecms自动编号autoindex和itemindex的使用

1.简介 自动编号属性(autoindex和itemindex):在列表循环中自增的一个编号,默认从0开始.在dedecms中以下三个标签含有这个属性. arclist 标签下使用 [field:global.autoindex/] channel 标签下使用 [field:global.autoindex/] channelartlist 标签下使用 {dede:global.itemindex/} 2.应用 使用自动编号属性,可以实现很多功能,如:每隔n条换行.隔行换色等功能. 示例1:每输

让dedecms autoindex,itemindex 从0到1开始的办法! 多重样式输出(借鉴)

原网址:http://my.oschina.net/lyx2012/blog/55888 [field:global name=autoindex runphp="yes"]@[email protected]+1;[/field:global] {dede:global name=itemindex runphp="yes"}@[email protected]+1;{/dede:global} autoindex   itemindex 的使用心得区别 chan

dedecms {dede:php}标签用法介绍

最简单的输入如 代码如下 复制代码 {dede:php} $numA = 1; $numB = 2; echo $numA + $numB; {/dede:php} 从上面语句可以看出dede:php标签可以名符其实的让在php中一样的用法,上面语句在php写法如下 代码如下 复制代码 <?$numA=1;$numB=2;echo $numA+$numB;?> 是不是看上去很像啊,再看一个再有if else 条件判断的 代码如下 复制代码 [field:global runphp='yes'

利用dedecms autoindex让文章列表加上序列号

有些时候我们在制作模板的 需要在文章标题前面加上序列号,可以通过织梦自带的autoindex属性来实现,实现方法很简单,只需要在序号递增的地方加上 这段代码就行,[field:global runphp='yes' name=autoindex][/field:global] ,完整代码如下. 可以通过 autoindex 属性实现更多高级的功能,大家可以搜索一下autoindex的用法了解更多. <ul > {dede:arclist row=’5′ titlelen=’30′ } <

织梦dedecms列表序号从0到1开始的办法 autoindex,itemindex标签

自增1 arclist            标签下使用 [field:global.autoindex/] 默认从1开始 channel         标签下使用 [field:global.autoindex/] 默认从0开 channelartlist 标签下使用 {dede:global.itemindex/}  默认从1开始 1 arclist 从0开始 [field:global name=autoindex runphp="yes"]@[email protected]

bootstrap 幻灯大图结合dedecms的autoindex

1 <div class="container" id="banner"> 2 <div id="carousel-example-generic" class="carousel slide" data-ride="carousel"> 3 <!-- Indicators --> 4 5 6 <!-- Wrapper for slides --> 7 <

DEDECMS自动编号(序号)autoindex属性

[field:global name=autoindex runphp="yes"]@[email protected]+1;[/field:global] {dede:global name=itemindex runphp="yes"}@[email protected]+1;{/dede:global} autoindex   itemindex 的使用心得区别 channelartlist 标签下使用 {dede:global name='itemindex

织梦dedecms自增变量autoindex标签的使用(转)

织梦dedecms自增变量autoindex标签的使用 例1: {dede:arclist titlelen='120' row='8' typeid='2'}         <li class="li[field:global.autoindex/]"><a href="[field:arcurl /]" title="[field:title/]" target="_blank" >[field:

DedeCms 文件加载顺序原理介绍

DedeCms 织梦cms可以说是国内最出名的cms系统了,对于我们研究cms,二次开发cms都是一个很好地学习. 下面分享下dedecms文件是如何加载模板是如何替换的. 比如织梦,ecshop这类模板引擎系统,研究它们的原理,就是从安装根目录的index.php看起来,看看都引入了那些文件,这些文件又起到了什么作用. 织梦的index首先判断了/data/common.inc.php这个文件存不存在,存在就是已经安装过了,否则就是没安装过,跳到install/index.php. 接下来引入