任何人都可以解决这个问题?这是一个简约的rolllspy代码。当内容为offset.top时,它会添加活动类。我知道这段代码有效但我能否知道是否有办法将活动类更改为“a”标记而不是其父类?我删除了.parent()但它似乎不起作用。我不希望整个李活跃。提前谢谢。
Codepen:https://jsfiddle.net/mekwall/up4nu/
HTML
<nav class="clearfix">
<ul class="clearfix" id="top-menu">
<li><a href="#services">Services</a></li>
<li><a href="#aboutus">About Us</a></li>
<li><a href="#testimonial">Testimonials</a></li>
<li><a href="#contactus">Contact Us</a></li>
</ul>
</nav>
的jQuery
// Cache selectors
var lastId,
topMenu = $("#top-menu"),
topMenuHeight = topMenu.outerHeight()+15,
// All list items
menuItems = topMenu.find("a"),
// Anchors corresponding to menu items
scrollItems = menuItems.map(function(){
var item = $($(this).attr("href"));
if (item.length) { return item; }
});
// Bind click handler to menu items
// so we can get a fancy scroll animation
menuItems.click(function(e){
var href = $(this).attr("href"),
offsetTop = href === "#" ? 0 : $(href).offset().top-topMenuHeight+1;
$('html, body').stop().animate({
scrollTop: offsetTop
}, 300);
e.preventDefault();
});
// Bind to scroll
$(window).scroll(function(){
// Get container scroll position
var fromTop = $(this).scrollTop()+topMenuHeight;
// Get id of current scroll item
var cur = scrollItems.map(function(){
if ($(this).offset().top < fromTop)
return this;
});
// Get the id of the current element
cur = cur[cur.length-1];
var id = cur && cur.length ? cur[0].id : "";
if (lastId !== id) {
lastId = id;
// Set/remove active class -- This is the part.
menuItems
.parent().removeClass("active")
.end().filter("[href='#"+id+"']").parent().addClass("active");
}
});
答案 0 :(得分:1)
Here an updated working jsfiddle
首先我为a.active添加了一个CSS,因为它适合[li]空间,因此无法辨别出什么是活动的。
然后您必须将标签设置为激活而不是[li]
现在,您可以将最近2个javascript行更改为
menuItems
.parent().find('a').removeClass("active")
.find('a').end().filter("[href='#"+id+"']").addClass("active");
使用find(&#39; a&#39;)来获取正确的标记。