mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 06:09:34 +08:00
491cc4f7ae
close #32808
63 lines
1.3 KiB
Markdown
63 lines
1.3 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
|
|
addonBefore="https://"
|
|
placeholder="input search text"
|
|
allowClear
|
|
onSearch={onSearch}
|
|
style={{ width: 304 }}
|
|
/>
|
|
<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,
|
|
);
|
|
```
|