标签: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> ) }
标签:span color turn component one ref efs col dom
原文地址:https://www.cnblogs.com/pcxhahaha/p/12354462.html