我在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;
}
提前感谢。
答案 0 :(得分:15)
最后我使用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");
}
});
答案 1 :(得分:2)
有很多方法可以做到这一点。有一些简单和丑陋的hacky:
解决方案1: 使用菜单控件。标准的.NET菜单控件有一个简单的解决方案来执行此操作。在我看来,这是最干净,最快速的解决方案。看看this帖子。如果您选择此解决方案,Maby会帮助您。
解决方案2: 您可以使用某种javascript来突出显示当前项目。如果你不想自己写一切,jQuery会让你更容易。对于此解决方案,请查看this页面。它已经过时但仍然有效。
解决方案3:
这是一个丑陋的解决方案,您可以通过多种不同的方式实现:您可以将<a>
元素更改为HyperLink控件,并在单击它们时设置某种会话或cookie。设置后,您可以根据cookie的值更改样式。
还有更多方法可以解决这个问题,但我认为前两个解决方案对您有帮助。
答案 2 :(得分:1)
检查您的网址并获取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>
Codebehind:
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
。希望这对你有所帮助。
答案 3 :(得分: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");
});
})
答案 4 :(得分: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();
});
答案 5 :(得分:-1)
jQuery(document).ready(function() {
var str = location.href.toLowerCase();
jQuery('#topnav li a[href=\'' + str + '\']').addClass('active');
});