1 // 页面滚动到顶部 2 // 方法一 3 document.body.scrollTop=document.documentElement.scrollTop=0 4 // 方法二 5 document.body.scrollIntoView() 6 7 // scrollIntoView 是元素也有的方法, 可以用在页面元素上,例如 8 document.getElementById('id').scrollIntoView()
标签:body,滚动,scrollIntoView,js,document,页面 From: https://www.cnblogs.com/zihang-cheng/p/16720728.html