码迷,mamicode.com
首页 > 其他好文 > 详细

react refs

时间:2020-02-23 21:57:38      阅读:71      评论:0      收藏:0      [点我收藏+]

标签:span   color   turn   component   one   ref   efs   col   dom   

react获取dom元素

componentDidMount () {
    console.log(this.refs.father)
  }
 render () {
    return (
      <div>
        <div ref="father"></div>
      </div>
    )
  }
componentDidMount () {
    console.log(this.father)
  }
 render () {
    return (
      <div>
        <div ref={(ref) => {this.father = ref}}></div>
      </div>
    )
  }

 

react refs

标签:span   color   turn   component   one   ref   efs   col   dom   

原文地址:https://www.cnblogs.com/pcxhahaha/p/12354462.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!