織夢DEDECMS系統(tǒng)中自增函數(shù)autoindex和itemindex的區(qū)別及實例
織夢DEDECMS系統(tǒng)中autoindex和itemindex的區(qū)別
autoindex:一般在循環(huán)標簽中使用,不可以獨立使用
itemindex:可以獨立使用
autoindex與itemindex都是中都是用@me來表示計數(shù)開始,而類似@me+1則可以指定數(shù)字開始,在不同的標簽中,他們的起始值是不同的:
[field:global name=autoindex runphp="yes"]@me=@me+1;[/field:global]
{dede:global name=itemindex runphp="yes"}@me=@me+1;{/dede:global}
channelartlist 標簽下使用?{dede:global name='itemindex' runphp='yes'}@me;{/dede:global}?是從0開始自增1
channelartlist 標簽下使用?{dede:global.itemindex/}?默認從1開始
arclist 標簽下使用?[field:global.autoindex/]?默認從1開始
channel 標簽下使用?[field:global.autoindex/]?默認從0開始
而如果想要改變起始值則按照以下方式調(diào)用:
從0開始[field:global name=autoindex runphp="yes"]@me=@me-1;[/field:global]
從1開始[field:global name=autoindex runphp="yes"]@me=@me+1;[/field:global]
其中,@me=@me±1就能實現(xiàn)對應的起始值,這里自己根據(jù)需要修改即可。
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}
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="<br />";}else{@me=' ';}[/field:global]{/dede:arclist}
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}
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}
擴展用法
起始值加5開始自增計數(shù)
[field:global name=autoindex runphp="yes"]@me=@me+5;[/field:global]
如果被2整除則輸出豎線否則為空
[field:global name=autoindex runphp="yes"](@me%2==0)? @me="|":@me="";[/field:global]
如果不等于8輸出豎線否則為空,即為8的時候不打印豎線
[field:global name=autoindex runphp="yes"](@me!=8)? @me="|":@me="";[/field:global]
列表每5行有帶劃線
[field:global runphp='yes' name=autoindex]
$a="<li>";
$c="<li class='line'>";
if ((@me % 5) == 0) @me = $c;
else @me = $a;
[/field:global]
在第5行和第10行加廣告,其他行為空
[field:global runphp='yes' name=autoindex]
$a="<div class='box'>";
$b="廣告1";
$c="</div>";
$d="廣告2";
$e="";
if (@me == 5) @me = $a.$b.$c;
else if (@me == 10) @me = $a.$d.$c;
else @me = $e;
[/field:global]
第一行樣式為class="check",其他行按行數(shù)類名字后面id="life_channe1"的數(shù)字1實現(xiàn)自增
<li><a href="[field:typeurl/] " [field:global name='autoindex'runphp='yes']if(@me==0){@me='class="check"';}else{@me='id="life_channe'.@me.'" goto="life_channe'.@me.'"';}[/field:global]>[field:typename/]</a></li>
Div中id名字后面的數(shù)字從0開始自增,判斷如果是第一行則加style="display:none;"屬性,其他行為空
<div id="HomeCon2_1_{dede:global name=itemindex runphp='yes'}@me=@me-1;{/dede:global}" class="HomeCon2_1_1" {dede:global name='itemindex' runphp='yes'}@me=(@me==1)?'':'style="display:none;"';{/dede:global} >
對autoindex/itemindex使用自定義函數(shù)
先在include/extend.fun.php里添加自定義函數(shù)
function MyPosition($p){
$positionArr=array(275,330,380,435,495,547);
return $positionArr[$p];
模版中調(diào)用方法為:
{dede:channel type='son' typeid='13' row='6' noself='yes'}
<!-----側(cè)欄菜單------------------>
<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}
1.本站主要是為了記錄工作、學習中遇到的問題,可能由于本人技術有限,內(nèi)容難免有紕漏,一切內(nèi)容僅供參考。
2.本站部分內(nèi)容來源互聯(lián)網(wǎng),如果有圖片或者內(nèi)容侵犯您的權(quán)益請聯(lián)系我們刪除!
3.本站所有原創(chuàng)作品,包括文字、資料、圖片、網(wǎng)頁格式,轉(zhuǎn)載時請標注作者與來源。