React学习:获取DOM

编程
1. 使用useRef创建REF对象,并与JSX绑定
const inputRef = useRef(null)
<input type='text' ref={ inputRef} />
2. 在DOM可用时,通过inputRef.current拿到DOM对象
console.log(inputRef.current)

我的博客,记录,笔记