欢迎您来到钨钼云商!

我要发布

getElementById('btn_top'); // 监听滚动 window.onscroll = function () { // 滚动坐标 let scrollTop = document.documentElement.scrollTop; if (scrollTop > 300) { btn_top.classList.add('show'); } else { btn_top.classList.remove('show'); } } // 返回顶部 btn_top.onclick = function () { document.documentElement.scrollTop = 0; }