mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-12 23:35:38 +08:00
2549e8176b
* docs: Input, use Space to refactor search-input demo * fix * test: update snap
56 lines
1.1 KiB
Markdown
56 lines
1.1 KiB
Markdown
---
|
|
order: 4
|
|
title:
|
|
zh-CN: 搜索框
|
|
en-US: Search box
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
带有搜索按钮的输入框。
|
|
|
|
## en-US
|
|
|
|
Example of creating a search box by grouping a standard input with a search button.
|
|
|
|
```jsx
|
|
import { Input, Space } from 'antd';
|
|
import { AudioOutlined } from '@ant-design/icons';
|
|
|
|
const { Search } = Input;
|
|
|
|
const suffix = (
|
|
<AudioOutlined
|
|
style={{
|
|
fontSize: 16,
|
|
color: '#1890ff',
|
|
}}
|
|
/>
|
|
);
|
|
|
|
const onSearch = value => console.log(value);
|
|
|
|
ReactDOM.render(
|
|
<Space direction="vertical">
|
|
<Search placeholder="input search text" onSearch={onSearch} style={{ width: 200 }} />
|
|
<Search placeholder="input search text" allowClear onSearch={onSearch} style={{ width: 200 }} />
|
|
<Search placeholder="input search text" onSearch={onSearch} enterButton />
|
|
<Search
|
|
placeholder="input search text"
|
|
allowClear
|
|
enterButton="Search"
|
|
size="large"
|
|
onSearch={onSearch}
|
|
/>
|
|
<Search
|
|
placeholder="input search text"
|
|
enterButton="Search"
|
|
size="large"
|
|
suffix={suffix}
|
|
onSearch={onSearch}
|
|
/>
|
|
</Space>,
|
|
mountNode,
|
|
);
|
|
```
|