首頁 > web前端 > js教程 > 主體

如何在 React 中捲動到某個元素?

Linda Hamilton
發布: 2024-11-14 09:37:02
原創
807 人瀏覽過

How to Scroll to an Element in React?

如何捲動到某個元素?

您希望聊天小工具在載入新訊息時自動聚焦於最後一則訊息。為此,您需要為每個訊息建立一個動態引用,並使用滾動函數滾動到最後一個元素。

以下是具體操作方法:

React 16.8 ,功能元件

const ScrollDemo = () => {
  const myRef = useRef(null);

  const executeScroll = () => myRef.current.scrollIntoView(); // run this function from an event handler or an effect to execute scroll

  return (
    <>
      <div ref={myRef}>Element to scroll to</div>
      <button onClick={executeScroll}>Click to scroll</button>
    </>
  );
};
登入後複製

React 16.3 ,類別元件

class ReadyToScroll extends Component {
  constructor(props) {
    super(props);
    this.myRef = React.createRef();
  }

  render() {
    return <div ref={this.myRef}>Element to scroll to</div>;
  }

  executeScroll = () => this.myRef.current.scrollIntoView(); // run this method to execute scrolling.
}
登入後複製

class ReadyToScroll extends Component {
  render() {
    return (
      <div ref={(ref) => (this.myRef = ref)}>Element to scroll to</div>
    );
  }

  executeScroll = () => this.myRef.scrollIntoView(); // run this method to execute scrolling.
}
登入後複製

注意:

  • 避免使用字串引用,因為它們已被棄用。
  • 將參考傳遞給 DOM 元素,而不是 React 元件。
  • 加入 CSS 以啟用平滑的滾動動畫。

以上是如何在 React 中捲動到某個元素?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板