页面滚动到顶部 也可实现或底部或中部

使用    -   scrollIntoView() 实现

具体参数自行搜索 scrollIntoView()

示例回到顶部

document.getElementById("id名称").scrollIntoView({behavior: "smooth"}); // 页面回到顶部 - 有过渡动画

原文地址:https://www.cnblogs.com/lymconch/p/11309391.html