获取 React 元素到窗口顶端的距离

testRef.current.scrollTop

好像不止React元素如此,所有DOM元素都是如此


更新:scrollTop 是相对于父组件的

如果获取组件位置只是想讲屏幕滚动到相应位置的话,可以直接 testRef.current.scrollIntoView()

具体见:https://www.delftstack.com/zh/howto/react/scroll-to-an-element-in-react/

如果不幸是使用的别人的组件,那个组件没有暴露 scrollIntoView 方法,就寄了

你可能感兴趣的:(React,&,Redux,react.js)