ant-design/components/form/demo/input-group.md

106 lines
2.2 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 4
2016-07-31 09:53:51 +08:00
title:
zh-CN: 输入框组合
en-US: Input group
2016-03-31 09:40:55 +08:00
---
2015-10-29 08:41:51 +08:00
2016-07-31 09:53:51 +08:00
## zh-CN
2015-11-06 14:13:26 +08:00
各类输入框的组合展现。
2016-07-31 09:53:51 +08:00
## en-US
Input group of different type input controls.
2015-10-29 08:41:51 +08:00
````jsx
import { Form, Input, Select, Col } from 'antd';
2015-10-29 08:41:51 +08:00
const FormItem = Form.Item;
const InputGroup = Input.Group;
const Option = Select.Option;
2016-06-16 22:18:00 +08:00
const selectAfter = (
<Select defaultValue=".com" style={{ width: 70 }}>
<Option value=".com">.com</Option>
<Option value=".jp">.jp</Option>
<Option value=".cn">.cn</Option>
<Option value=".org">.org</Option>
</Select>
);
2016-06-16 21:15:59 +08:00
2015-10-29 08:41:51 +08:00
ReactDOM.render(
<Form horizontal>
<FormItem
2016-07-31 09:53:51 +08:00
label="Input control"
labelCol={{ span: 6 }}
wrapperCol={{ span: 16 }}
>
<Input addonBefore="Http://" defaultValue="mysite.com" id="site1" />
2015-10-29 08:41:51 +08:00
</FormItem>
<FormItem
2016-07-31 09:53:51 +08:00
label="Input control"
labelCol={{ span: 6 }}
2016-05-24 20:08:13 +08:00
validateStatus="success"
wrapperCol={{ span: 16 }}
>
<Input addonBefore="Http://" addonAfter=".com" defaultValue="mysite" id="site2" />
2015-10-29 08:41:51 +08:00
</FormItem>
<FormItem
2016-07-31 09:53:51 +08:00
label="Select input control"
labelCol={{ span: 6 }}
wrapperCol={{ span: 16 }}
>
2016-06-16 21:15:59 +08:00
<Input addonAfter={selectAfter} placeholder="www.mysite" id="site4" />
2015-10-29 08:41:51 +08:00
</FormItem>
<FormItem
2016-07-31 09:53:51 +08:00
label="Please input your identity number"
labelCol={{ span: 6 }}
wrapperCol={{ span: 16 }}
>
2015-10-29 08:41:51 +08:00
<InputGroup>
<Col span="6">
<Input id="certNo1" />
</Col>
<Col span="6">
<Input id="certNo2" />
</Col>
<Col span="6">
<Input id="certNo3" />
</Col>
<Col span="6">
<Input id="certNo4" />
</Col>
</InputGroup>
</FormItem>
<FormItem
2016-07-31 09:53:51 +08:00
label="Tel"
labelCol={{ span: 6 }}
wrapperCol={{ span: 16 }}
>
<InputGroup>
2015-10-29 08:41:51 +08:00
<Col span="4">
<Input id="tel1" defaultValue="086" />
2015-10-29 08:41:51 +08:00
</Col>
<Col span="2">
<p className="ant-form-split">--</p>
</Col>
<Col span="6">
<Input id="tel1" />
</Col>
<Col span="6">
<Input id="tel2" />
2015-10-29 08:41:51 +08:00
</Col>
<Col span="6">
<Input id="tel3" />
</Col>
</InputGroup>
2015-10-29 08:41:51 +08:00
</FormItem>
</Form>
, mountNode);
2015-10-29 08:41:51 +08:00
````