📜  如何在 React js 中平滑滚动到顶部 - 无论代码示例

📅  最后修改于: 2022-03-11 14:58:37.851000             🧑  作者: Mango

代码示例1
function App() {
    const myRef = createRef()
    
    function scroll(ref) {
        ref.current.scrollIntoView({ behavior: 'smooth' })
      }
  
    return (
      
Content... ..... .....
) }