織夢(mèng)DEDECMS系統(tǒng)中自增函數(shù)autoindex和itemindex的區(qū)別及實(shí)例

織夢(mèng)DEDECMS系統(tǒng)中autoindex和itemindex的區(qū)別

autoindex:一般在循環(huán)標(biāo)簽中使用,不可以獨(dú)立使用

itemindex:可以獨(dú)立使用

autoindex與itemindex都是中都是用@me來(lái)表示計(jì)數(shù)開(kāi)始,而類(lèi)似@me+1則可以指定數(shù)字開(kāi)始,在不同的標(biāo)簽中,他們的起始值是不同的:

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

channelartlist 標(biāo)簽下使用?{dede:global name='itemindex' runphp='yes'}@me;{/dede:global}?是從0開(kāi)始自增1

channelartlist 標(biāo)簽下使用?{dede:global.itemindex/}?默認(rèn)從1開(kāi)始

arclist 標(biāo)簽下使用?[field:global.autoindex/]?默認(rèn)從1開(kāi)始

channel 標(biāo)簽下使用?[field:global.autoindex/]?默認(rèn)從0開(kāi)始

而如果想要改變起始值則按照以下方式調(diào)用:

從0開(kāi)始[field:global name=autoindex runphp="yes"]@me=@me-1;[/field:global]

從1開(kāi)始[field:global name=autoindex runphp="yes"]@me=@me+1;[/field:global]

其中,@me=@me±1就能實(shí)現(xiàn)對(duì)應(yīng)的起始值,這里自己根據(jù)需要修改即可。

channelartlist實(shí)例

{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實(shí)例

{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 時(shí)用這種方式:

{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實(shí)例

{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 標(biāo)簽下試用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}

擴(kuò)展用法

起始值加5開(kāi)始自增計(jì)數(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的時(shí)候不打印豎線

[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ù)類(lèi)名字后面id="life_channe1"的數(shù)字1實(shí)現(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開(kāi)始自增,判斷如果是第一行則加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} >

對(duì)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}

 

THE END
亚洲中文色欧另类欧美,久久久久久久激情,亚洲 日韩 欧美 另类 国产,中文字幕高清无码男人的天堂 www.sucaiwu.net