react useRef()函数
摘要:
“ref”对象是一个通用容器,其current属性是可变的 保存domfunction Test() { const t = useRef(null); useEffect(() => { l(t.current); // div }); return ( <div ref={t}> ... </d 阅读全文
posted @ 2020-11-06 17:54 ranyonsue 阅读(2094) 评论(0) 推荐(0) 编辑