在本文中,我們將解決一個常見問題,即當有新消息時,聊天小部件的滾動條保持固定在頂部加載。我們的目標是將滾動條聚焦在前一個陣列中的最後一個訊息元素。
要解決此問題,我們需要:
React 16.8 ,功能組件:
const ScrollDemo = () => { const myRef = useRef(null); const executeScroll = () => myRef.current.scrollIntoView(); // Scroll to the element 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(); // Scroll to the element }
class ReadyToScroll extends Component { render() { return <div ref={(ref) => (this.myRef = ref)}>Element to scroll to</div>; } executeScroll = () => this.myRef.scrollIntoView(); // Scroll to the element }
避免使用字串引用,因為它們會降低效能和可組合性。
html { scroll-behavior: smooth; }
以上是如何在 React 中捲動到聊天小工具的底部?的詳細內容。更多資訊請關注PHP中文網其他相關文章!