在reactjs中设置文本输入占位符颜色

新手上路,请多包涵

使用普通 CSS 时,如果您想设置占位符的样式,请使用这些 css 选择器:

 ::-webkit-input-placeholder {
    color: red;
}

但我不知道如何在反应内联样式中应用这些类型的样式。

原文由 Mohammad Razeghi 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 941
2 个回答

你可以尝试使用

var Radium = require('radium');
var React = require('react');
var color = require('color');

@Radium
class Button extends React.Component {
  static propTypes = {
    kind: React.PropTypes.oneOf(['primary', 'warning']).isRequired
  };

  render() {
    // Radium extends the style attribute to accept an array. It will merge
    // the styles in order. We use this feature here to apply the primary
    // or warning styles depending on the value of the `kind` prop. Since its
    // all just JavaScript, you can use whatever logic you want to decide which
    // styles are applied (props, state, context, etc).
    return (
      <button
        style={[
          styles.base,
          styles[this.props.kind]
        ]}>
        {this.props.children}
      </button>
    );
  }
}

// You can create your style objects dynamically or share them for
// every instance of the component.
var styles = {
  base: {
    color: '#fff',

    // Adding interactive state couldn't be easier! Add a special key to your
    // style object (:hover, :focus, :active, or @media) with the additional rules.
    ':hover': {
      background: color('#0074d9').lighten(0.2).hexString()
    },
    '::-webkit-input-placeholder' {
        color: red;
    }
  },

  primary: {
    background: '#0074D9'
  },

  warning: {
    background: '#FF4136'
  }
};

原文由 Sergio Flores 发布,翻译遵循 CC BY-SA 3.0 许可协议

只需给你的“输入”标签一个“id”或一个“类”,然后将你的 css 样式放在 src 内的 App.css 中。例如

//App.css or external stylesheet

#inputID::placeholder {
    color: #ff0000;
    opacity: 1;
}

//your jsx code
<input type="text" id="inputID" placeholder="Your text here" />

这实际上对我有用。

原文由 Olawale Oladiran 发布,翻译遵循 CC BY-SA 4.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进