--- order: 3 title: zh-CN: 抽屉表单 en-US: Submit form in drawer --- ## zh-CN 在抽屉中使用表单。 ## en-US Use a form in Drawer with a submit button. ```jsx import { Drawer, Form, Button, Col, Row, Input, Select, DatePicker } from 'antd'; import { PlusOutlined } from '@ant-design/icons'; const { Option } = Select; class DrawerForm extends React.Component { state = { visible: false }; showDrawer = () => { this.setState({ visible: true, }); }; onClose = () => { this.setState({ visible: false, }); }; render() { return ( <> } >
trigger.parentElement} />
); } } ReactDOM.render(, mountNode); ``` ```css .site-form-in-drawer-wrapper { position: absolute; right: 0px; bottom: 0px; width: 100%; padding: 10px 16px; text-align: right; background: #fff; border-top: 1px solid #e9e9e9; } ```