ant-design/components/input/demo/search-input.md

67 lines
1.2 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
2016-05-25 18:21:27 +08:00
order: 4
title:
zh-CN: 搜索框
en-US: Search box
2016-03-31 09:40:55 +08:00
---
2015-12-02 19:33:26 +08:00
2016-08-22 17:26:14 +08:00
## zh-CN
带有搜索按钮的输入框。
2015-12-02 19:33:26 +08:00
2016-08-22 17:26:14 +08:00
## en-US
Example of creating a search box by grouping a standard input with a search button.
2019-05-07 14:57:32 +08:00
```jsx
import { Input } from 'antd';
import { AudioOutlined } from '@ant-design/icons';
2018-06-27 15:55:04 +08:00
2019-06-19 19:09:08 +08:00
const { Search } = Input;
2015-12-02 19:33:26 +08:00
const suffix = (
<AudioOutlined
style={{
fontSize: 16,
color: '#1890ff',
}}
/>
);
const onSearch = value => console.log(value);
2015-12-02 19:33:26 +08:00
ReactDOM.render(
<>
<Search placeholder="input search text" onSearch={onSearch} style={{ width: 200 }} />
<Search
placeholder="input search text"
allowClear
onSearch={onSearch}
style={{ width: 200, margin: '0 10px' }}
/>
2019-05-07 14:57:32 +08:00
<br />
<br />
<Search placeholder="input search text" onSearch={onSearch} enterButton />
2019-05-07 14:57:32 +08:00
<br />
<br />
<Search
placeholder="input search text"
allowClear
enterButton="Search"
size="large"
onSearch={onSearch}
/>
<br />
<br />
<Search
placeholder="input search text"
enterButton="Search"
size="large"
suffix={suffix}
onSearch={onSearch}
/>
</>,
2019-05-07 14:57:32 +08:00
mountNode,
2018-11-28 15:00:03 +08:00
);
2019-05-07 14:57:32 +08:00
```