我想要的是固定导航,使用 NEXT 和 PREV 按钮基本上将页面滚动到具有“section”类的下一个 div。
我已经设置 jQuery 实质上为 NEXT 和 PREV href 添加了一个点击功能。然后,此单击功能将使用 ScrollTop 移动到具有 .section 类的下一个 duv。
这是jQuery:
$('div.section').first();
// binds a click event-handler to a elements whose class='display'
$('a.display').on('click', function(e) {
// prevents the default action of the link
e.preventDefault();
// assigns the text of the clicked-link to a variable for comparison purposes
var t = $(this).text(),
that = $(this);
console.log(that.next())
// checks if it was the 'next' link, and ensures there's a div to show after the currently-shown one
if (t === 'next' && that.next('div.section').length > 0) {
//Scroll Function
$('html, body').animate({scrollTop:that.next('div.section').scrollTop()});
}
// exactly the same as above, but checking that it's the 'prev' link
else if (t === 'prev' && that.prev('div.section').length > 0) {
//Scroll Function
$('html, body').animate({scrollTop:that.prev('div.section').scrollTop()});
}
});
我目前正在使用带有大量评论的 jQuery 开发 JSfiddle,以帮助您消化:http: //jsfiddle.net/ADsKH/1/
我有一个 console.log 目前正在检查 (that.next()) 以确定下一个 .section 将是什么,但它给了我一些非常奇怪的结果。
为什么这没有按预期工作?