JS 页面滚动到底部

如果需要让页面平滑滚动到指定位置,则需要增加参数behavior,设置其值为"smooth" 

var t = document.body.clientHeight;
window.scroll({ top: t, left: 0, behavior: 'smooth' });

References:

https://blog.csdn.net/seven521m/article/details/83817878

你可能感兴趣的:(view)