具有无限级别的可折叠导航菜单

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了具有无限级别的可折叠导航菜单相关的知识,希望对你有一定的参考价值。

A lightweight, collapsable menu script that works no matter how many nested lists there are.
  1. $('#container ul li a').click(function() {
  2. if ( $(this).parent().children('ul').size() > 0 ) {
  3. $(this).parent().children('ul:first').toggle();
  4. $(this).parent().siblings().find('ul:visible').hide();
  5. }
  6. });

以上是关于具有无限级别的可折叠导航菜单的主要内容,如果未能解决你的问题,请参考以下文章

带有 jQ​​uery 和 Bootstrap 3 的可折叠响应式侧边栏菜单

滑块菜单片段中的可交换选项卡

jquery实现的点击可以展开折叠的垂直导航菜单

具有多个拆分导航的 Bootstrap 4 Navbar 不会折叠

Bootstrap 折叠菜单链接在移动设备上不起作用

html Bootstrap简单的可折叠导航栏