JS动态滑动切换到页面指定位置

方法一:window.scroll 将页面动态划到指定的位置。 浏览器:IE11以上 window.scroll({ top: 2500, left: 0, behavior: 'smooth' }); // Scroll certain amounts from current position window.scrollBy({ top: 100, // could be negative value left: 0, behavior: 'smooth' }); 方法二:...