6

我在masterpage(在 ASP.NET 网站中)有一个菜单,我想突出显示母版页菜单和子菜单中的活动页面。

HTML:

<ul id="nav" class="sf-menu">
    <li class="current-menu-item"><a href="index.html">Home</a></li>    
    <li><a href="page.html">menu-2</a>
       <ul>
          <li><a href="page-full.html">full</a></li>
          <li><a href="page-features.html">featurs</a></li>
          <li><a href="page-typography.html">typography</a></li>
       </ul>
    </li>
</ul>

CSS:

#nav>li.current-menu-item>a,
#nav>li.current_page_item>a{
    color: #fe8300;
}

提前致谢。

4

6 回答 6

16

最后我解决了我的问题jQuery

    var str=location.href.toLowerCase();
    $("#nav li a").each(function() {
        if (str.indexOf($(this).attr("href").toLowerCase()) > -1) {
            $("li.current-menu-item").removeClass("current-menu-item");
            $(this).parent().addClass("current-menu-item");
        }
    });
    $("li.current-menu-item").parents().each(function(){
        if ($(this).is("li")){
            $(this).addClass("current-menu-item");
        }
    });
于 2013-06-21T10:36:21.480 回答
2

有很多方法可以做到这一点。有一些简单的和一些丑陋的hacky:

解决方案 1: 使用菜单控件。标准的 .NET 菜单控件有一个简单的解决方案来做到这一点。在我看来,这是最干净和最快的解决方案。看看这个帖子。如果您选择此解决方案,它可能会对您有所帮助。

解决方案 2: 您可以使用某种 javascript 来突出显示当前项目。如果您不想自己编写所有内容,那么 jQuery 会让这一切变得更容易。对于此解决方案,请查看页面。它已经过时但仍然有效。

解决方案 3: 这是一个丑陋的解决方案,您可以通过多种不同的方式做到这一点:您可以将<a>元素更改为 HyperLink 控件,并在单击它们时设置某种会话或 cookie。设置后,您可以根据 cookie 的值更改样式。

还有更多方法可以解决这个问题,但我认为前两个解决方案会对你有所帮助。

于 2013-06-12T09:06:44.480 回答
1

检查您的 url 并获取 html 文件名,然后比较它并在母版页中设置您的 css 类,或者单独制作一个菜单 UserControl,然后将其放在母版页上。

您必须将锚标记更改为超链接

asp.net 标记:

<li><asp:HyperLink runat="server" ID="lnk_full" NavigateUrl="page-full.html" Text="full" /></li>
<li><asp:HyperLink runat="server" ID="lnk_features" NavigateUrl="page-features.html" Text="features" /></li>
<li><asp:HyperLink runat="server" ID="lnk_typography" NavigateUrl="page-typography.html" Text="typography" /></li>

代码隐藏:

protected void SelectMenu()
    {
        try
        {
            string page = Path.GetFileNameWithoutExtension(Request.AppRelativeCurrentExecutionFilePath);
            string pageDirectory = Path.GetDirectoryName(Request.AppRelativeCurrentExecutionFilePath);

            string category = Request.QueryString.Count>0 ? Request.QueryString[0] : string.Empty;
            if (pageDirectory.Length > 3)
            {
                pageDirectory = pageDirectory.Substring(2, pageDirectory.Length - 2);
            }
            if (pageDirectory != null && pageDirectory.Length > 0 && page != null && page.Length > 0)
            {
                switch (pageDirectory)
                {
                    case "Secure\\Clients":
                        switch (page)
                        {
                            case "page-full":
                                lnk_full.CssClass = "current-menu-item";
                                break;
                            case "page-features":
                                lnk_features.CssClass = "current-menu-item";
                                break;
                            case "page-typography":
                                lnk_typography.CssClass = "current-menu-item";
                                break;
                        }
                        break;
                }
            }
        }
        catch (Exception ex)
        {
            throw ex;
        }
    }

如果您的网页位于根目录中,则不要切换到pageDirectory. 如果您使用的是查询字符串,那么您可以切换为category. 希望这对您有所帮助。

于 2013-06-13T07:17:02.273 回答
0

这在开发期间和本地对我来说都很好,但是当我在 IIS 上托管它时,菜单上的活动突出显示不起作用。我在这里想念什么?主页代码如下

$(document).ready(function () {
        //You can name this function anything you like
        function activePage() {
            //When user lands on your website location.pathname is equal to "/" and in 
            //that case it will add "active" class to all links
            //Therefore we are going to remove first character "/" from the pathname
            var currentPage = location.pathname;
            var slicedCurrentPage = currentPage.slice(1);
            //This will add active class to link for current page
            $('.nav-link').removeClass('active');
            $('a[href*="' + location.pathname + '"]').closest('li').addClass('active');
            //This will add active class to link for index page when user lands on your website
            if (location.pathname == "/") {
                $('a[href*="index"]').closest('li').addClass('active');
            }
        }
        //Invoke function
        activePage();
    });
于 2019-09-09T07:00:32.087 回答
0
$(function () {
        $(".navbar‐btn a").each(function () {
            var hreff = this.href.trim().split("/").splice(3, 4);

            if (hreff.length > 1)
                hreff.splice(0, 1);

            if (hreff[0] == window.location.pathname.split("/").splice(1, 1)[0])
                $(this).parent().addClass("active");
        });
    })
于 2015-12-14T15:31:31.743 回答
-1
jQuery(document).ready(function() {
  var str = location.href.toLowerCase();
  jQuery('#topnav li a[href=\'' + str + '\']').addClass('active');
});
于 2016-06-30T04:52:26.360 回答