ecshop中的这个菜单是干嘛用的?

2016-07-07 16:41 来源:www.chinab4c.com 作者:ecshop专家

  1. <div id="ECS_CATALOG" class="catalog-div" style="display:none"
  2. onmouseover="if (this.style.display != 'block') this.style.display='block';"
  3. onmouseout="if (this.style.display != 'none') this.style.display = 'none';">
  4. <ul>
  5. <!--{assign var="level" value=0}-->
  6. <!-- {foreach from=$catalog_list item=cat} -->
  7. <!-- {if $level > $cat.level} -->
  8. </ul>
  9. <!-- {/if}-->
  10. <!-- {if $level < $cat.level} -->
  11. <ul>
  12. <!-- {/if} -->
  13. <li class="{if $cat.level eq 0}top-cate{else}snd-cate{/if}"><a href="{$cat.url}" title="{if $cat.cat_desc neq ''}{$cat.cat_desc}{/if}">{$cat.cat_name}</a></li>
  14. <!--{assign var="level" value=$cat.level}-->
  15. <!-- {/foreach} -->
  16. </ul>
  17. </div>
复制代码
如上,好像又是隐藏的!
有什么用?


回答:
原来是顶部“所有分类”用的

ff下的web developer帮我找到了