首页 > 教程 >

织梦channel子栏目导航标签currentstyle鼠标点击高亮变色加

2023-03-02教程围观

简介dedecms织梦channel子栏目导航标签currentstyle鼠标点击高亮变色加class样式。.red2{color:red;}如果点击了其他页面不加class='red2',当点击或者首次打开首页的时候会加classMarkup首页如果点击了其中的一个栏目则则这个栏目增加class='red2'变色Markup{dede:channeltype='top'row='8'currents

  
dedecms织梦channel子栏目导航标签currentstyle鼠标点击高亮变色加class样式 。
<style>
.red2{color:red;}
</style>
如果点击了其他页面不加class='red2',当点击或者首次打开首页的时候会加class
 
Markup
<li {dede:field name=typeid runphp="yes"}(@me=="")? @me=" class='red2'":@me="";{/dede:field}><a href='{dede:global.cfg_ host/}'>首页</a></li>
如果点击了其中的一个栏目则则这个栏目增加class='red2'变色
 
Markup
{dede:channel type='top' row='8' currentstyle="<li class='red2'><a href='~type ~' >~typename~</a> </li>" }
<li><a href="[field:type /]">[field:typename/]</a></li>
{/dede:channel}
注意:
 
如果是子栏目currentstyle这个标签是不生效的。需要改个配置
 
currentstyle无效的修复办法:
 
修改include/taglib/channel.lib.php 
 
133行。
 
PHP
if( ($row['id']==$typeid || ($topid==$row['id'] && $type=='top') ) && $currentstyle!='' )
修改为  
 
PHP
if( ($row['id']==$refObj->Type ->TypeInfos['id'] || ($topid==$row['id'] && $type=='top') ) && $currentstyle!='' )
下面是子栏目currentstyle的调用
 
Markup
{dede:channel typeid='3' currentstyle="<li class='red2'><a href='~type ~' >~typename~</a> </li>" }
<li><a href="[field:type /]">[field:typename/]</a></li>
{/dede:channel}

下载链接:网站源码/小程序源码/网站模板下载

Tags: 织梦 导航 点击 鼠标 标签