在手风琴菜单上突出显示活动页面

时间:2019-05-15 16:55:52

标签: zurb-foundation accordion

在某些页面上,我有一个手风琴菜单作为侧边栏。 (灵感来自厨房水槽页面上的“文档”面板)。我想打开手风琴菜单到活动页面并突出显示。我可以将项目更改为活动项目,将父项以及子项更改为活动项。但我无法打开手风琴打开该特定列表项。

我已经使用panini在菜单的页面顶部添加了以下内容。

<script src="http://code.jquery.com/jquery-2.1.4.min.js"></script>
<script>
    $(function(){
        $('a').each(function(){
            if ($(this).prop('href') == window.location.href) {
                $(this).addClass('active'); $(this).parents('li').addClass('active');
            }
        });
    });
</script>

0 个答案:

没有答案