ant-design/components/modal/demo/manual.md
2017-05-16 15:09:10 +08:00

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
);
````