我目前正在尝试创建一个导航菜单,其中一个活动类应用于具有与当前url匹配的hrefs的锚点,因此我可以设置该锚点,使其从其余部分中脱颖而出菜单。
这是我的加价:
<div id="sidebar">
<h2>Navigation menu</h2>
<h2 class="subnav"><a href="menu1/menu_item1">Menu item 1</a></h2>
<h2 class="subnav"><a href="menu1/menu_item2">Menu item 2</a></h2>
<h2 class="subnav"><a href="menu1/menu_item3">Menu item 3</a></h2>
<h2 class="subnav"><a href="menu1/menu_item4">Menu item 4</a></h2>
<h2 class="subnav"><a href="menu1/menu_item5">Menu item 5</a></h2>
</div>
这是jQuery:
jQuery(function($) {
// get the current url
var path = location.pathname.substring(1);
// defining the top subnav anchor
var $top_item = $('#sidebar h2:nth-child(2) a');
// defining all subnav anchors
var $all_items = $('#sidebar h2.subnav a');
// defining the anchors with a href that matches the current url
var $selected_item = $('#sidebar h2 a[@href$="' + path + '"]');
// setting the selected menu item'class as active
$selected_item.addClass('active');
// THIS IS WHERE I THINK THE ERROR IS
// if none of the h2.subnav's has a url that matches
// the current location then assume that it's the top one that's active:
if ($all_items("href") !== path) $top_item.addClass('active');
});
我正在使用jQuery应用active-class,只要锚点href和位置url之间存在匹配,它就可以正常工作。如果url与任何锚点都不匹配,我希望将active-class应用于$ top_item。我的jQuery的那部分不起作用。
我看不出错误是什么,但是我又有点像Javascript / jQuery n00b。任何帮助将不胜感激。
答案 0 :(得分:6)
这应该是您想要的:标记匹配的链接,如果没有,请标记您的默认链接。
function markActiveLink() {
//Look through all the links in the sidebar
$("div#sidebar a").filter(function() {
//Take the current URL and split it into chunks at each slash
var currentURL = window.location.toString().split("/");
//return true if the bit after the last slash is the current page name
return $(this).attr("href") == currentURL[currentURL.length-1];
//when the filter function is done, you're left with the links that match.
}).addClass("active");
//Afterwards, look back through the links. If none of them were marked,
//mark your default one.
if($("div#sidebar a").hasClass("active") == false) {
$("div#sidebar h2:nth-child(2) a").addClass("active");
}
}
markActiveLink();
此外,我找到了关于此on the jQuery Docs site的官方教程 - 滚动到底部以查看jQuery代码。它比我的更紧,虽然它不适合你的情况。
答案 1 :(得分:1)
给这个代码一个机会,这是我为我工作的公司整理的东西。
// highlight tab function
var path = location.pathname;
var home = "/";
$("a[href='" + [path || home] + "']").parents("li").each(function() {
$(this).addClass("selected");
});
答案 2 :(得分:1)
很好读..但是,我必须提出一个建议..即使JS工作完美,你真的应该将所有菜单列表项保存在无序列表(或有序列表)中,作为最佳实践.. :)
答案 3 :(得分:0)
我认为你可以简化一下:
function highlightSelected()
{
$("h2.subnav a").each(
function()
{
if (location.pathname.indexOf(this.href) > -1)
{
$(this).addClass("selected");
}
}
);
}