react中函数的style如何优雅地写多个? 财富值95

2016-11-04 18:27发布

        this.refs.regular.style.color="#000";         this.refs.picWord.style.color="#94979c";         this.refs.interact.style.color="#94979c";          this.refs.regular.style.borderBottom = "solid 2px #373F42";         this.refs.picWord.style.borderBottom="none";         this.refs.interact.style.borderBottom="none";

这段代码如何优雅点写?实在受不了这样一个一个style写下来。。

付费偷看设置
发送
3条回答
egil - 这个人很懒,什么都没留下
1楼 · 2016-11-04 18:22.采纳回答

首先,不要通过refs给child赋值

react中尽量避免获取dom 来操作 这种思维是不对的 要基于数据驱动

其次,你根本连官方教程都没看完吧,baidu搜索reactjs第一个就是,看完docs里面的quick start再说

一周热门 更多>