mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-16 01:29:11 +08:00
65 lines
1.3 KiB
Markdown
65 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.
|
|
|
|
```tsx
|
|
import { AudioOutlined } from '@ant-design/icons';
|
|
import { Input, Space } from 'antd';
|
|
import React from 'react';
|
|
|
|
const { Search } = Input;
|
|
|
|
const suffix = (
|
|
<AudioOutlined
|
|
style={{
|
|
fontSize: 16,
|
|
color: '#1890ff',
|
|
}}
|
|
/>
|
|
);
|
|
|
|
const onSearch = (value: string) => console.log(value);
|
|
|
|
const App: React.FC = () => (
|
|
<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>
|
|
);
|
|
|
|
export default App;
|
|
```
|