通过页面加载初始化,遍历菜单项的url,如果等于当前页面的url就加上选中的样式

2023-04-07 141 0

 

$(document).ready(function () {

            $(".nav a").each(function () {

                $this = $(this);

                if ($this[0].href == String(window.location)) {

                    $("#li").removeClass("active");

                    $this.parent().addClass("active");

                }

            });

        });

通过页面加载初始化,遍历菜单项的url,如果等于当前页面的url就加上选中的样式

 

相关文章

WordPress如何开启 memcached 进行优化加速
WordPress如何开启 Opcache 优化进行加速
WordPress通过redis缓存数据库教程
WordPress完美更换域名方法
WordPress自动给文章标签加内联方法!
WordPress如何添加顶部导航

发布评论