javascript-如何通过设置类来更改其下划线颜色

const styles = {
 inkbar: {
  '&:after': {
   backgroundColor: 'red',
   height: '2px'
 }
},
 underline:{
 '&:before':{
  height:'2px',
  backgroundColor:'green'
}
}
};

  <Select
      fullWidth
      value={this.props.value}
      onChange={this.props.onChange}
      input={
        <Input
          classes={{    
            inkbar:this.props.classes.inkbar,
            underline:this.props.classes.underline}}
        />
      }
    >
      {this.props.children}
    </Select>)

但是,当我使用react工具检查代码时,发现了< Input>类.组件未更改.有谁知道如何更改< Select>中的下划线和下划线的颜色.零件?

我使用Material-ui v1.0.0-beta

通过设置className我很喜欢.但是我仍然想知道为什么更改类不起作用.

解决方法:

代替类使用className,有关更多信息,请检出link

上一篇:javascript-将函数作为参数传递,这将是onClick事件


下一篇:javascript-在react-leaflet / es / context.js中调用createContext失败