登录  /  注册
首页 > CMS教程 > DEDECMS > 正文

DedeCms autoindex和itemindex怎么用

藏色散人
发布: 2019-12-26 09:21:04
原创
2285人浏览过

DedeCms autoindex和itemindex怎么用

DedeCms autoindex和itemindex怎么用?

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

  推荐学习:织梦cms

代码如下:

<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"]@me=@me+1;[/field:global] 
{dede:global name=itemindex runphp="yes"}@me=@me+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"]@me=@me-1;[/field:global] 
channel 从1开始[field:global name=autoindex runphp="yes"]@me=@me+1;[/field:global][field:typename/] 
channelartlist 从0开始{dede:global name=itemindex runphp='yes'}@me=@me-1;{/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'}@me=@me-1;{/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}
登录后复制

以上就是DedeCms autoindex和itemindex怎么用的详细内容,更多请关注php中文网其它相关文章!

智能AI问答
PHP中文网智能助手能迅速回答你的编程问题,提供实时的代码和解决方案,帮助你解决各种难题。不仅如此,它还能提供编程资源和学习指导,帮助你快速提升编程技能。无论你是初学者还是专业人士,AI智能助手都能成为你的可靠助手,助力你在编程领域取得更大的成就。
相关标签:
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
作者最新文章
最新问题
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 技术文章
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2023 //m.sbmmt.com/ All Rights Reserved | php.cn | 湘ICP备2023035733号

登录PHP中文网,和优秀的人一起学习!
全站2000+教程免费学