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