2016-03-31 09:40:55 +08:00
|
|
|
---
|
2016-05-25 18:21:27 +08:00
|
|
|
order: 4
|
2016-08-22 09:53:39 +08:00
|
|
|
title:
|
2019-01-17 16:52:12 +08:00
|
|
|
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
|
2016-08-22 09:53:39 +08:00
|
|
|
|
2019-11-22 14:37:39 +08:00
|
|
|
带有搜索按钮的输入框。
|
2015-12-02 19:33:26 +08:00
|
|
|
|
2016-08-22 17:26:14 +08:00
|
|
|
## en-US
|
2016-08-22 09:53:39 +08:00
|
|
|
|
2019-11-22 14:37:39 +08:00
|
|
|
Example of creating a search box by grouping a standard input with a search button.
|
2016-08-22 09:53:39 +08:00
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
```tsx
|
2020-04-23 18:11:11 +08:00
|
|
|
import { AudioOutlined } from '@ant-design/icons';
|
2022-05-21 22:14:15 +08:00
|
|
|
import { Input, Space } from 'antd';
|
|
|
|
import React from 'react';
|
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
|
|
|
|
2020-04-23 18:11:11 +08:00
|
|
|
const suffix = (
|
|
|
|
<AudioOutlined
|
|
|
|
style={{
|
|
|
|
fontSize: 16,
|
|
|
|
color: '#1890ff',
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
const onSearch = (value: string) => console.log(value);
|
2020-10-13 21:16:20 +08:00
|
|
|
|
2022-05-19 09:46:26 +08:00
|
|
|
const App: React.FC = () => (
|
2021-01-10 21:42:44 +08:00
|
|
|
<Space direction="vertical">
|
2020-10-13 21:16:20 +08:00
|
|
|
<Search placeholder="input search text" onSearch={onSearch} style={{ width: 200 }} />
|
2021-01-10 21:42:44 +08:00
|
|
|
<Search placeholder="input search text" allowClear onSearch={onSearch} style={{ width: 200 }} />
|
2021-11-13 15:37:27 +08:00
|
|
|
<Search
|
|
|
|
addonBefore="https://"
|
|
|
|
placeholder="input search text"
|
|
|
|
allowClear
|
|
|
|
onSearch={onSearch}
|
|
|
|
style={{ width: 304 }}
|
|
|
|
/>
|
2020-10-13 21:16:20 +08:00
|
|
|
<Search placeholder="input search text" onSearch={onSearch} enterButton />
|
2020-10-24 23:28:24 +08:00
|
|
|
<Search
|
|
|
|
placeholder="input search text"
|
|
|
|
allowClear
|
|
|
|
enterButton="Search"
|
|
|
|
size="large"
|
|
|
|
onSearch={onSearch}
|
|
|
|
/>
|
2020-04-23 18:11:11 +08:00
|
|
|
<Search
|
|
|
|
placeholder="input search text"
|
|
|
|
enterButton="Search"
|
|
|
|
size="large"
|
|
|
|
suffix={suffix}
|
2020-10-13 21:16:20 +08:00
|
|
|
onSearch={onSearch}
|
2020-04-23 18:11:11 +08:00
|
|
|
/>
|
2022-04-03 23:27:45 +08:00
|
|
|
</Space>
|
2018-11-28 15:00:03 +08:00
|
|
|
);
|
2022-05-19 09:46:26 +08:00
|
|
|
|
|
|
|
export default App;
|
2019-05-07 14:57:32 +08:00
|
|
|
```
|