搜索
首页web前端js教程为活动状态和可扩展菜单创建动态导航脚本

Creating a Dynamic Navigation Script for Active State and Expandable Menus

构建动态 Web 应用程序时,用户界面 (UI) 需要提供直观的导航体验。无论是具有多个产品类别的电子商务网站还是内容丰富的管理仪表板,拥有活动状态和可扩展菜单都可以增强可用性。在这篇博文中,我们将逐步创建一个 JavaScript 脚本,该脚本动态突出显示导航中的当前页面,并根据用户的路径展开相关部分。

问题

当用户浏览多层菜单时,我们希望:

  1. 当前页面链接上的活动状态
  2. 可扩展部分,如果用户位于嵌套在菜单中的页面上,则会自动打开。

让我们看一个示例 HTML 结构以及如何添加 JavaScript 以使我们的菜单变得智能。

菜单结构示例

这是一个典型的嵌套菜单结构。我们将为菜单中的每个项目使用 menu-item,为链接使用 menu-link,为可折叠子菜单使用 menu-sub。

<!-- Categories -->
  • In this structure:

    • Each main menu link (menu-toggle) opens a submenu when clicked.
    • The actual pages are in the submenu links (menu-link).

    The JavaScript Solution

    We’ll use JavaScript to:

    1. Identify the current page.
    2. Apply an active class to the link that matches the current URL.
    3. Add an open class to the parent menu if the link is inside a collapsed submenu.

    Here’s the JavaScript code:

    <script>
        window.onload = function () {
            const currentPath = window.location.pathname; // Get the current path
            const links = document.querySelectorAll('.menu-link'); // Select all menu links
    
            links.forEach(function (link) {
                // Check if the link's href matches the current page's path
                if (link.getAttribute('href') === currentPath) {
                    // Add 'active' class to the parent 'li' element of the link
                    const menuItem = link.closest('.menu-item');
                    if (menuItem) {
                        menuItem.classList.add('active');
    
                        // Check if the link is within a 'menu-sub', expand the parent menu
                        const parentMenu = menuItem.closest('.menu-sub');
                        if (parentMenu) {
                            // Add 'open' class to the parent 'menu-item' of the submenu
                            const parentMenuItem = parentMenu.closest('.menu-item');
                            if (parentMenuItem) {
                                parentMenuItem.classList.add('open');
                            }
                        }
                    }
                }
            });
        };
    </script>
    

    分解代码

    1. 获取当前路径
       const currentPath = window.location.pathname;
    

    这会获取当前页面的路径(例如,/inventory-issues),我们将用它来与菜单中每个链接的 href 进行比较。

    1. 选择菜单链接
       const links = document.querySelectorAll('.menu-link');
    

    我们选择具有菜单链接类的所有元素,假设这些元素包含指向网站各个部分的链接。

    1. 匹配当前页面
       if (link.getAttribute('href') === currentPath) {
    

    对于每个链接,我们检查其 href 是否与 currentPath 匹配。如果是,则该链接适用于当前页面。

    1. 设置活动状态
       menuItem.classList.add('active');
    

    我们向最近的菜单项添加一个活动类,允许我们设置活动页面链接的样式。

    1. 展开父菜单
       const parentMenuItem = parentMenu.closest('.menu-item');
       parentMenuItem.classList.add('open');
    

    如果活动链接位于子菜单 (menu-sub) 内,这部分代码将查找包含该子菜单的父菜单项并添加开放类,将其展开。

    为活动和开放状态添加 CSS

    您需要为 CSS 中的活动类和开放类定义样式:

    <!-- Categories -->
    
  • In this structure:

    • Each main menu link (menu-toggle) opens a submenu when clicked.
    • The actual pages are in the submenu links (menu-link).

    The JavaScript Solution

    We’ll use JavaScript to:

    1. Identify the current page.
    2. Apply an active class to the link that matches the current URL.
    3. Add an open class to the parent menu if the link is inside a collapsed submenu.

    Here’s the JavaScript code:

    <script>
        window.onload = function () {
            const currentPath = window.location.pathname; // Get the current path
            const links = document.querySelectorAll('.menu-link'); // Select all menu links
    
            links.forEach(function (link) {
                // Check if the link's href matches the current page's path
                if (link.getAttribute('href') === currentPath) {
                    // Add 'active' class to the parent 'li' element of the link
                    const menuItem = link.closest('.menu-item');
                    if (menuItem) {
                        menuItem.classList.add('active');
    
                        // Check if the link is within a 'menu-sub', expand the parent menu
                        const parentMenu = menuItem.closest('.menu-sub');
                        if (parentMenu) {
                            // Add 'open' class to the parent 'menu-item' of the submenu
                            const parentMenuItem = parentMenu.closest('.menu-item');
                            if (parentMenuItem) {
                                parentMenuItem.classList.add('open');
                            }
                        }
                    }
                }
            });
        };
    </script>
    

    这种方法的好处

    • 自动活动状态:无需在每个页面上对活动链接进行硬编码。该脚本动态更新活动链接。
    • 可扩展菜单:用户只能看到与当前页面相关的部分,减少手动打开菜单的需要。
    • 可重用:该脚本足够通用,可以与各种嵌套菜单结构一起使用,使其适应多种类型的网站。

    ?来自埃迪古莱

  • 以上是为活动状态和可扩展菜单创建动态导航脚本的详细内容。更多信息请关注PHP中文网其他相关文章!

    声明
    本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
    在JavaScript中替换字符串字符在JavaScript中替换字符串字符Mar 11, 2025 am 12:07 AM

    JavaScript字符串替换方法详解及常见问题解答 本文将探讨两种在JavaScript中替换字符串字符的方法:在JavaScript代码内部替换和在网页HTML内部替换。 在JavaScript代码内部替换字符串 最直接的方法是使用replace()方法: str = str.replace("find","replace"); 该方法仅替换第一个匹配项。要替换所有匹配项,需使用正则表达式并添加全局标志g: str = str.replace(/fi

    自定义Google搜索API设置教程自定义Google搜索API设置教程Mar 04, 2025 am 01:06 AM

    本教程向您展示了如何将自定义的Google搜索API集成到您的博客或网站中,提供了比标准WordPress主题搜索功能更精致的搜索体验。 令人惊讶的是简单!您将能够将搜索限制为Y

    示例颜色json文件示例颜色json文件Mar 03, 2025 am 12:35 AM

    本文系列在2017年中期进行了最新信息和新示例。 在此JSON示例中,我们将研究如何使用JSON格式将简单值存储在文件中。 使用键值对符号,我们可以存储任何类型的

    构建您自己的Ajax Web应用程序构建您自己的Ajax Web应用程序Mar 09, 2025 am 12:11 AM

    因此,在这里,您准备好了解所有称为Ajax的东西。但是,到底是什么? AJAX一词是指用于创建动态,交互式Web内容的一系列宽松的技术。 Ajax一词,最初由Jesse J创造

    8令人惊叹的jQuery页面布局插件8令人惊叹的jQuery页面布局插件Mar 06, 2025 am 12:48 AM

    利用轻松的网页布局:8个基本插件 jQuery大大简化了网页布局。 本文重点介绍了简化该过程的八个功能强大的JQuery插件,对于手动网站创建特别有用

    什么是这个&#x27;在JavaScript?什么是这个&#x27;在JavaScript?Mar 04, 2025 am 01:15 AM

    核心要点 JavaScript 中的 this 通常指代“拥有”该方法的对象,但具体取决于函数的调用方式。 没有当前对象时,this 指代全局对象。在 Web 浏览器中,它由 window 表示。 调用函数时,this 保持全局对象;但调用对象构造函数或其任何方法时,this 指代对象的实例。 可以使用 call()、apply() 和 bind() 等方法更改 this 的上下文。这些方法使用给定的 this 值和参数调用函数。 JavaScript 是一门优秀的编程语言。几年前,这句话可

    通过来源查看器提高您的jQuery知识通过来源查看器提高您的jQuery知识Mar 05, 2025 am 12:54 AM

    jQuery是一个很棒的JavaScript框架。但是,与任何图书馆一样,有时有必要在引擎盖下发现发生了什么。也许是因为您正在追踪一个错误,或者只是对jQuery如何实现特定UI感到好奇

    10张移动秘籍用于移动开发10张移动秘籍用于移动开发Mar 05, 2025 am 12:43 AM

    该帖子编写了有用的作弊表,参考指南,快速食谱以及用于Android,BlackBerry和iPhone应用程序开发的代码片段。 没有开发人员应该没有他们! 触摸手势参考指南(PDF) Desig的宝贵资源

    See all articles

    热AI工具

    Undresser.AI Undress

    Undresser.AI Undress

    人工智能驱动的应用程序,用于创建逼真的裸体照片

    AI Clothes Remover

    AI Clothes Remover

    用于从照片中去除衣服的在线人工智能工具。

    Undress AI Tool

    Undress AI Tool

    免费脱衣服图片

    Clothoff.io

    Clothoff.io

    AI脱衣机

    AI Hentai Generator

    AI Hentai Generator

    免费生成ai无尽的。

    热门文章

    R.E.P.O.能量晶体解释及其做什么(黄色晶体)
    2 周前By尊渡假赌尊渡假赌尊渡假赌
    仓库:如何复兴队友
    1 个月前By尊渡假赌尊渡假赌尊渡假赌
    Hello Kitty Island冒险:如何获得巨型种子
    4 周前By尊渡假赌尊渡假赌尊渡假赌

    热工具

    EditPlus 中文破解版

    EditPlus 中文破解版

    体积小,语法高亮,不支持代码提示功能

    安全考试浏览器

    安全考试浏览器

    Safe Exam Browser是一个安全的浏览器环境,用于安全地进行在线考试。该软件将任何计算机变成一个安全的工作站。它控制对任何实用工具的访问,并防止学生使用未经授权的资源。

    螳螂BT

    螳螂BT

    Mantis是一个易于部署的基于Web的缺陷跟踪工具,用于帮助产品缺陷跟踪。它需要PHP、MySQL和一个Web服务器。请查看我们的演示和托管服务。

    SublimeText3 英文版

    SublimeText3 英文版

    推荐:为Win版本,支持代码提示!

    SublimeText3 Mac版

    SublimeText3 Mac版

    神级代码编辑软件(SublimeText3)