点击导航显示对应列表
2022-11-14 本文已影响0人
每天进步一点点5454
点击导航显示对应列表
导航 yearNum li'
列表 journalNumCon
$('body ').delegate('.yearNum li', 'click', function (e) {
$(this).addClass('active').siblings().removeClass('active');
let index = $(this).index();
$('html,body').animate({
//90代表页面导航条占据的高度,具体根据需求来改变
scrollTop: $('.journalNumCon').eq(index).offset().top-100
}, 1000);
return false;
})