直接上代码吧,这里是在写模板时候用到,因为子栏目过多,让他显示10个,多余10个的时候显示一个更多按钮。

<div class="nav"> <ul class="ul-list"> <li><a href="[!--news.url--]" class="<?=$GLOBALS[navclassid]?"":"hover"?>">网站首页</a></li>[e:loop={"select classid,classname,islast from {$dbtbpre}enewsclass where bclassid='0' and showclass=0 order by myorder,classid ASC limit 11",0,24,0}]<?php$classurl=sys_ReturnBqClassname($bqr,9);//取得栏目地址$class="layui-this"; //有子栏目时一级栏目的样式if($GLOBALS[navclassid]){$fcr=explode('|',$class_r[$GLOBALS[navclassid]][featherclass]);$topbclassid=$fcr[1]?$fcr[1]:$GLOBALS[navclassid];//取得当前栏目的一级栏目IDif($bqr[classid]==$topbclassid){$class="layui-this"; //当前栏目高亮显示}}elseif($public_r[home]==1){$class="layui-this";}?><li><a href="<?=$classurl?>"><?=$bqr[classname]?></a><?phpif(!$bqr[islast]) //判断是否终极栏目{?><ol class="ol-list"> <?php//取得栏目下的子栏目$newsclass=$empire->query("select classid,classname from ".$dbtbpre."enewsclass where bclassid=".$bqr[classid]." order by myorder,classid asc limit 12");$thi = 0;while($classr=$empire->fetch($newsclass)){$classrurl=sys_ReturnBqClassname($classr,9); //取得子栏目地址if($thi > 10){?><li><a href="<?=sys_ReturnBqClassname($bqr,9)?>" target="_blank">更多</a></li><?phpbreak;}else{?><li><a href="<?=$classrurl?>" target="_blank"><?=$classr[classname]?></a></li><?php}$thi = $thi + 1;}?></li><?php}?></ol>[/e:loop]</ul>  </div>

样式截图: