--- 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'; const { Search } = Input; ReactDOM.render(
console.log(value)} style={{ width: 200 }} />

console.log(value)} enterButton />

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