mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-17 02:18:07 +08:00
7fd093bd0a
* docs: add general components TS demo * docs: add layout components TS demo * docs: add navigation components TS demo * docs: add data entry components TS demo * chore(deps): add types for qs * docs: add data display TS demo * docs: add feedback components TS demo * docs: add other components TS demo * chore(deps): add types * docs: unified demo code style * docs: fix lint error * docs: add demo TS type * docs: fix demo TS type * test: update snapshot * docs: fix TS demo * feat: update Rate character type * docs: fix lint error * feat: update Rate character type * feat: update Rate character type
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 React from 'react';
|
|
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: 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;
|
|
```
|