如何自动滚动到活动菜单或子菜单。

时间:2017-11-07 12:26:56

标签: jquery

当我们点击菜单或子菜单时,它应自动获取菜单顶部的位置。我尝试过完美的滚动条jquery插件,但它无法正常工作。请提供最佳解决方案。

1 个答案:

答案 0 :(得分:0)

你可以这样做 -

$('#A_ID').click(function (e) {//#A_ID is an example. Use the id of your Anchor
$('html, body').animate({
    scrollTop: $('#DIV_ID').offset().top - 20//#DIV_ID is an example. Use the id of your destination on the page
}, 'slow');
});