Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在用
document.body.style.transform = 'scale(0.8)';
减小页面大小,现在我在浏览器上看到滚动条,我需要它滚动到中心或滚动到正文,我该怎么做?
window.scrollTo( 0, screen.height/2 );
或者如果你想要中心中心:
window.scrollTo( screen.width/2, screen.height/2 );
window.scrollTo(x-coord, y-coord);