gpt4 book ai didi

javascript - 简约的滚动 spy 将事件类仅更改为标签

转载 作者:行者123 更新时间:2023-12-03 06:29:19 26 4
gpt4 key购买 nike

有人能解决这个问题吗?这是简约滚动 spy 的代码。当内容为 offset.top 时,它会添加事件类。我知道这段代码有效,但我能知道是否有办法将事件类更改为“a”标记而不是其父标记?我删除了 .parent() 但它似乎不起作用。我不想整个里都活跃起来。提前致谢。

代码笔: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");
}
});

最佳答案

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('a') 获取正确的标签。

关于javascript - 简约的滚动 spy 将事件类仅更改为标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38510120/

26 4 0