ant-design/components/input-number/demo/prefix.md
2021-10-30 22:25:12 +08:00

892 B

order title
7
zh-CN en-US
前缀 Prefix

zh-CN

在输入框上添加前缀图标。

en-US

Add a prefix inside input.

import { Form, InputNumber, Tooltip } from 'antd';
import { InfoCircleOutlined, SmileOutlined, UserOutlined } from '@ant-design/icons';

ReactDOM.render(
  <>
    <InputNumber prefix="¥" style={{ width: '100%' }} />
    <br />
    <br />
    <InputNumber addonBefore={<UserOutlined />} prefix="¥" style={{ width: '100%' }} />
    <br />
    <br />
    <InputNumber prefix="¥" disabled style={{ width: '100%' }} />
    <br />
    <br />
    <Form>
      <Form.Item label="Warning" hasFeedback validateStatus="warning">
        <InputNumber
          style={{ width: '100%' }}
          placeholder="Warning"
          id="warning"
          prefix={<SmileOutlined />}
        />
      </Form.Item>
    </Form>
  </>,
  mountNode,
);