Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 242 Bytes

scroll-to-top-of-the-page.md

File metadata and controls

13 lines (9 loc) · 242 Bytes

#滚动到页面顶部

通常,您可以滚动到一个点,其坐标指示从该点到文档顶部和左侧的距离

window.scrollTo(pageX, pageY)

因此,以下代码滚动到页面顶部:

window.scrollTo(0, 0)