1import { useRef } from "react";
2export default function App() {
3 const inputRef = useRef(null);
4 const GetDomElement = () => {
5 console.log(inputRef.current);
6 };
7 return (
8 <>
9 <input type="text" ref={inputRef} />
10 <button onClick={GetDomElement}>获取DOM元素</button>
11 </>
12 );
13}