javascript 滚动到锚点

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了javascript 滚动到锚点相关的知识,希望对你有一定的参考价值。

document.querySelectorAll('a[href^="#"]').forEach(anchor => {
    anchor.addEventListener('click', function (e) {
        e.preventDefault();

        document.querySelector(this.getAttribute('href')).scrollIntoView({
            behavior: 'smooth'
        });
    });
});

以上是关于javascript 滚动到锚点的主要内容,如果未能解决你的问题,请参考以下文章

javascript 平滑滚动到锚点

JavaScript Jquery Smotth滚动到锚点链接

平滑滚动到锚点

Vue路由器导航或滚动到锚点(#锚点)

如何检测自动滚动到锚点?

无法滚动到锚点