// 页面滚动到顶部// 方法一document.body.scrollTop=document.documentElement.scrollTop=0// 方法二document.body.scrollIntoView()// scrollIntoView 是元素也有的方法, 可以用在页面元素上,例如document.getElementById('id').scrollIntoView()