具有无限级别的可折叠导航菜单
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了具有无限级别的可折叠导航菜单相关的知识,希望对你有一定的参考价值。
A lightweight, collapsable menu script that works no matter how many nested lists there are.
$('#container ul li a').click(function() { if ( $(this).parent().children('ul').size() > 0 ) { $(this).parent().children('ul:first').toggle(); $(this).parent().siblings().find('ul:visible').hide(); } });
以上是关于具有无限级别的可折叠导航菜单的主要内容,如果未能解决你的问题,请参考以下文章
带有 jQuery 和 Bootstrap 3 的可折叠响应式侧边栏菜单