全国400电话网上服务平台
强大号码库资源任选,方便,快捷,快速开通。
咨询热线:400-1100-266
强大号码库资源任选,方便,快捷,快速开通。
咨询热线:400-1100-266
dede实现嵌套li加currentstyle的二级菜单
POST TIME:2017-11-13 00:04
line100
//检查是否有子栏目,并返回rel提示(用于二级菜单)
及 line130
$row['rel']="rel='dropmenu{$row['id']}'";
可见,如果需要二级菜单加当前样式,那么头部
- <ul>
- <li><ahref='{dede:global.cfg_cmsurl/}/'>
- <spanclass="cn">首页</span>
- <spanclass="en">Home</span>
- </a></li>
- {dede:channeltype='top'row='10'currentstyle='<liclass="current"><ahref="~typelink~"~rel~>#<spanclass="cn">~typename~</span><spanclass="en">~dirName~</span></a></li>'
- }
- <li>
- <ahref='[field:typeurl/]'[field:rel/]>
- <spanclass="cn">[field:typename/]</span>
- <spanclass="en">[field:typedirrunphp='yes'commet="获得最后目录名,英文"]
- $l=split("/",@me);
- @me=array_pop($l);
- [/field:typedir]</span>
- </a>
- </li>
- {/dede:channel}
- </ul>
rel的属性是必须的
而且在底部
{dede:channelartlist typeid='top'}
<ul id="dropmenu{dede:field.typeid/}">
{dede:channel type='son' noself='yes'}
<li><a href="[field:typelink/]">[field:typename/]</a></li>
{/dede:channel}
</ul>
{/dede:channelartlist}
dropmenu的关键字也是必须的。
dropmenu的关键字也是必须的。
剩下的就是css和js的工作了。