refs的用法

constructor(props){
        super(props)
        this.myRefs = React.createRef();
    }
    refFun(){
        const node = this.myRefs.current
        node.style.color = "red"
    }
    render() {
        return ( 
            
) }

refs的用法_第1张图片

 

你可能感兴趣的:(refs的用法)