如何使用 Reacts 选择普通 dom 元素

问题描述 投票:0回答:1
javascript dom react-hooks
1个回答
0
投票

您可以使用

useRef
钩子来实现此目的。

 function YourComponent() {
  const scrollerRef = useRef(null);

  // You can access the DOM element with scrollerRef.current

  return (
    <div className="scroller scroller-middle" ref={scrollerRef}>
      <svg
        className="scroller__thumb"
        xmlns="http://www.w3.org/2000/svg"
        width="100"
        height="100"
        viewBox="0 0 100 100"
      >
        <polygon points="0 50 37 68 37 32 0 50" style={{ fill: 'rgb(24,24,62)' }} />
        <polygon points="100 50 64 32 64 68 100 50" style={{ fill: 'rgb(24,24,62)' }} />
      </svg>
    </div>
  );
}
© www.soinside.com 2019 - 2024. All rights reserved.