织梦CMS,当前栏目高亮显示

不多说废话,直接上代码。

1
2
3
4
5
6
7
8
9
{dede:php}
  $GLOBALS[ 'thisid' ] = intval($refObj->Fields[ 'id' ]);
{/dede:php}
<ul>
    <li><a href= "/"  target= "_blank"   {dede:php}  if (!$GLOBALS[ 'thisid' ]) echo  "class='this'" ; {/dede:php} ><span>HOME</span><br />首 页</a></li> 
{dede:channel type= 'top'  row= '7'  }
    <li><a href= "[field:typeurl/]"  [field:id runphp= 'yes' if  (@me == $GLOBALS[ 'thisid' ] ) @me =  "class='this' "  ;[/field:id]  target= "_blank"  ><span>[field:alias/]</span><br />[field:typename/]</a></li>
{/dede:channel}
</ul>

以上是全部代码。下面进行说明

1
2
3
{dede:php}
  $GLOBALS[ 'thisid' ] = intval($refObj->Fields[ 'id' ]);
{/dede:php}

获取当前栏目ID。

1
[field:id runphp= 'yes' if  (@me == $GLOBALS[ 'thisid' ] ) @me =  "class='this' "  ;[/field:id]

对dede:channel标签运行PHP,如果ID相等,输出class='this'

 

ps

 

[field:typetype runphp='yes']
if($row['ID']==”$typeid”) @me = “class=a”;
else @me = “”;
[/field:typetype]


你可能感兴趣的:(织梦CMS,当前栏目高亮显示)