mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-30 14:29:33 +08:00
33 lines
487 B
Markdown
33 lines
487 B
Markdown
---
|
|
order: 7
|
|
title:
|
|
zh-CN: 手动移除
|
|
en-US: Manual to destroy
|
|
---
|
|
|
|
## zh-CN
|
|
|
|
手动关闭modal。
|
|
|
|
## en-US
|
|
|
|
Manually destroying a modal.
|
|
|
|
````jsx
|
|
import { Modal, Button } from 'antd';
|
|
|
|
function success() {
|
|
const modal = Modal.success({
|
|
title: 'This is a notification message',
|
|
content: 'This modal will be destroyed after 1 second',
|
|
});
|
|
setTimeout(() => modal.destroy(), 1000);
|
|
}
|
|
|
|
|
|
ReactDOM.render(
|
|
<Button onClick={success}>Success</Button>,
|
|
mountNode
|
|
);
|
|
````
|