我正在使用window.scrollBy(),它在PC上可完美运行,但是会在手机上跳转。 这是我打电话的例子
scrollTextAboutUs= () => {
var scrollTo=document.getElementById("AboutUs").getClientRects()[0].y-this.state.headerHeight
window.scrollBy({top: scrollTo, left: 0, behavior: 'smooth'})
}