• 帝国 cms 导航条栏目切换样式


    灵动标签调用栏目导航技巧
    本节通过用灵动标签的SQL语句查询来调用栏目导航。(当然栏目导航一般我们用现成的showclasstemp或listshowclass栏目导航标签调用)

    灵动标签调用栏目导航技巧:
    例一:灵动标签显示栏目导航

    <table width="200" border="0" cellpadding="3" cellspacing="1" bgcolor="#4FB4DE">
    <tr>
    <td height="25"><strong><font color="#FFFFFF">栏目导航</font></strong></td>
    </tr>
    [e:loop={"select classid,classname from {$dbtbpre}enewsclass where bclassid=父栏目id order by myorder,classid desc",0,24,0}]
    <?php
    $classurl=sys_ReturnBqClassname($bqr,9);//取得栏目地址
    ?>
    <tr>
    <td height="25" bgcolor="#FFFFFF"><a href="<?=$classurl?>"><?=$bqr[classname]?></a></td>
    </tr>
    [/e:loop]
    </table>

    显示效果:
    例二:灵动标签显示栏目导航,且给当前终极栏目的背景设为蓝色

    <table width="200" border="0" cellpadding="3" cellspacing="1" bgcolor="#4FB4DE">
    <tr>
    <td height="25"><strong><font color="#FFFFFF">栏目导航</font></strong></td>
    </tr>
    [e:loop={"select classid,classname from {$dbtbpre}enewsclass where bclassid=父栏目id order by myorder,classid desc",0,24,0}]
    <?php
    $classurl=sys_ReturnBqClassname($bqr,9);//取得栏目地址
    $bgcolor="#FFFFFF";
    if($bqr[classid]==$GLOBALS[navclassid])//当前栏目ID
    {
    $bgcolor="#C3EFFF";
    }
    ?>
    <tr>
    <td height="25" bgcolor="<?=$bgcolor?>"><a href="<?=$classurl?>"><?=$bqr[classname]?></a></td>
    </tr>
    [/e:loop]
    </table>

    $GLOBALS[navclassid]为当前栏目ID。
    例三:灵动标签显示一级栏目导航,且在子栏目时也给当前一级栏目的背景设为蓝色

    <table width="200" border="0" cellpadding="3" cellspacing="1" bgcolor="#4FB4DE">
    <tr>
    <td height="25"><strong><font color="#FFFFFF">栏目导航</font></strong></td>
    </tr>
    [e:loop={"select classid,classname from {$dbtbpre}enewsclass where bclassid=0 order by myorder,classid desc",0,24,0}]
    <?php
    $classurl=sys_ReturnBqClassname($bqr,9);//取得栏目地址
    $bgcolor="#FFFFFF";
    if($GLOBALS[navclassid])
    {
    $fcr=explode('|',$class_r[$GLOBALS[navclassid]][featherclass]);
    $topbclassid=$fcr[1]?$fcr[1]:$GLOBALS[navclassid];//取得当前栏目的一级栏目ID
    if($bqr[classid]==$topbclassid)
    {
    $bgcolor="#C3EFFF";
    }
    }

    ?>
    <tr>
    <td height="25" bgcolor="<?=$bgcolor?>"><a href="<?=$classurl?>"><?=$bqr[classname]?></a></td>
    </tr>
    [/e:loop]
    </table>

    [e:loop={"select classid,classname from {$dbtbpre}enewsclass where bclassid=0 order by myorder,classid desc",0,24,0}]
    <?php
    $classurl=sys_ReturnBqClassname($bqr,9);//取得栏目地址
    $bgclass="";
    if($GLOBALS[navclassid])
    {
    $fcr=explode('|',$class_r[$GLOBALS[navclassid]][featherclass]);
    $topbclassid=$fcr[1]?$fcr[1]:$GLOBALS[navclassid];//取得当前栏目的一级栏目ID
    if($bqr[classid]==$topbclassid)
    {
    $bgclass="current";
    }
    }
    ?>
    <li ><a href="<?=$classurl?>" class="<?=$bgclass?>"><strong><?=$bqr[classname]?></strong></a></li>
    [/e:loop]



  • 相关阅读:
    QT小技巧
    C#通用类库设置开机自运行禁用任务管理器注册表等操作
    C#通用类库农历类(很全面)
    C#通用类库导出数据(比其他方式快200倍)
    如果你想当程序员!请看!
    C#通用类库汉字转拼音
    C#通用类库加密解密类
    C#制作图片压缩工具
    QT编写图片数据转换工具
    C++面试题 virtual
  • 原文地址:https://www.cnblogs.com/wenus/p/2418488.html
Copyright © 2020-2023  润新知