3

我有几个嵌套和隐藏的子导航列表

<ul class="nav">
<li><a href="index.html">Home</a></li>
<li><a class="profile" href="#">Profile</a>
    <ul id="profile">
        <li><a href="company.html">Company</a></li>
        <li><a href="structure.html">Structure</a></li>
        <li><a href="team.html">Team</a></li>
    </ul>
</li>

<li><a class="projects" href="#">Projects</a>
    <ul id="projects">
        <li><a href="chapter.html">Chapter</a></li>
        <li><a href="pblc-trde.html">Pblc Trde</a></li>
        <li><a href="globe.html">Globe</a></li>
        <li><a href="komforte.html">Komforte</a></li>
    </ul>
</li>    

我目前正在使用我在网上找到的一些 jQuery 在单击时显示/隐藏子导航。我想要完成的是:

  1. 希望清理子 nab 菜单的显示/隐藏单击功能。

  2. 当点击子导航菜单项时,打开的对应页面,需要将子导航展开并赋予对应的菜单项活动类,以便让用户知道他们在哪个页面。

  3. 我希望纯粹在 JS/jQuery 中做到这一点。该站点的安装将在 WordPress 中。

    $(document).ready(function () {
    
    $(".profile").click(function () {
        var X = $(this).attr('id');
        if (X == 1) {
            $("#profile").hide();
            $(this).attr('id', '0');
        } else {
            $("#profile").show();
            $(this).attr('id', '1');
        }
    
    });
    
    //Mouse click on nav
    $("#profile").mouseup(function () {});
    
    
    //Document Click
    $(document).mouseup(function () {
        $("#profile").hide();
        $(".profile").attr('id', '');
    });
    
    
    $(".projects").click(function () {
        var X = $(this).attr('id');
        if (X == 1) {
            $("#projects").hide();
            $(this).attr('id', '0');
        } else {
            $("#projects").show();
            $(this).attr('id', '1');
        }
    
    });
    
    //Mouse click on nav
    $("#projects").mouseup(function () {});
    
    //Document Click
    $(document).mouseup(function () {
        $("#projects").hide();
        $(".projects").attr('id', '');
    });
    });
    
    window.onload = function () {
     $("ul#profile li:first").addClass("active");
    };
    
     $(document).ready(function () {
      $("ul#profile").show()
    });
    
4

2 回答 2

1
$(document).ready(function()
{
    // Get the name of the page. Split the URL at the '/':s and get the last part
    // with pop():
    var pageName = (location.pathname).split('/').pop();

    // If we couldn't get a page name, default to index.html:
    if( pageName == '' )
    {
        pageName = 'index.html';
    }

    // Hide ul:s that are children of the navigation:
    $('.nav ul').hide();

    // Event handler for clicks on navigation links:
    $('.nav a').on('click', function()
    {
        // Change visibility for the first ul-child of the current li.
        // $(this) refers to the clicked element.
        $(this).parent('li').find('ul').first().toggle();

        // Hide other sub-menus:
        $(this).parents('li').siblings('li').children('ul').hide();
    });

    // Search through all link elements in the nav menu:
    $('.nav').find('a').each(function(index, value)
    {   
        // Append a '$' to the pagename to make the match()-function search
        // from the end of the href value:
        pageName += '$';

        if( value.href.match(pageName))
        {
            // If the pagename matches the href-attribute, then add the 'active'
            // class to the parent li, and show parent ul:s:
            $(this).parent('li').addClass('active').parents('ul').show();    
        }
    });
});
于 2013-03-18T23:47:50.037 回答
0

您可以使用 Cookie 来保存当前打开的菜单的值。这将允许在页面加载和浏览器会话之间保存/检索值。

由于您已经安装了 jQuery,您可以使用jQuery Cookie 插件来简化操作。

它的代码非常简单(插件页面上有更多示例)。

$.cookie('open_menu', 'projects'); //Save 'projects' under 'open_menu'
$.cookie('open_menu') //Returns 'projects'

只需检查页面加载的值并在单击其中一个菜单时保存它。

如果您不想添加任何额外的插件,这里有一些关于JavaScript 的内置 cookie API的文档。

编辑:我为您创建了一个带有示例的JSFiddle 。Cookie 代码似乎在沙箱中不起作用,但该代码应该适合您,如果您有任何问题,请告诉我。

$(window).load(function() {
if ($.cookie('show_menu') !== undefined) {
    $('#' + $.cookie('show_menu')).click();
}

$('.nav > li > ul').each(function () {
    //Hide the sub lists
    $(this).hide();
    //Get link with same ID as Class
    var id = $(this).attr('id');
    //When link is clicked
    $('.' + id).click(function () {
        //Get the sub list
        var list = $('#' + $(this).attr('class'));
        //Check if it's currently visible
        if (list.is(':visible')) {
            list.hide(); //Hide list     
            $.cookie('show_menu', ''); //Unset open menu
        } else {
            $('.nav > li > ul').hide(); //Hide all other lists
            list.show(); //Show list
            $.cookie('show_menu', list.attr('class')); //Set open menu
        }
    });
});
});
于 2013-03-18T23:49:49.173 回答