ReactJS - How to change style and class of react component?

前端 未结 2 1784
温柔的废话
温柔的废话 2021-02-04 06:39

I\'d like to be able to change the style and className of a component before it\'s rendered, outside of it\'s render function. I\'ve got more going on

2条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-02-04 06:54

    you can try this game

    componentDidMount() {
      document.querySelector('.yourClassName').style = 'your: style'
    }
    

提交回复
热议问题