--- 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 } from 'antd'; import { AudioOutlined } from '@ant-design/icons'; const { Search } = Input; const suffix = ( ); ReactDOM.render( <> console.log(value)} style={{ width: 200 }} />

console.log(value)} enterButton />

console.log(value)} />

console.log(value)} /> , mountNode, ); ```