在react中获取Dom 在react中获取Dom节点用到的api: ref createRef 代码12345678910111213141516// demo组件import {createRef} from 'react'const Demo=()=>{ const Dom_P=createRef(null) const getDom=()=>{ console.log(Dom_P)//{current:p} console.log(Dom_P.current)// <p>This is P</p> } return ( <div> <p ref={Dom_P}>This is P</p> <button onClick={getDom}>Get P</button> </div> )}export default Demo 日常 踩坑 React 本博客所有文章除特别声明外,均采用 CC BY-SA 4.0 协议 ,转载请注明出处! antd menu组件 上一篇 关于hexo打包路径问题 下一篇