ant-design/components/modal/demo/manual.md

33 lines
487 B
Markdown
Raw Normal View History

---
order: 7
title:
2016-08-11 11:41:06 +08:00
zh-CN: 手动移除
en-US: Manual to destroy
---
2016-08-11 11:41:06 +08:00
## zh-CN
手动关闭modal。
2016-08-11 11:41:06 +08:00
## en-US
Manually destroying a modal.
2017-02-13 10:55:53 +08:00
````jsx
import { Modal, Button } from 'antd';
function success() {
const modal = Modal.success({
2016-08-11 11:41:06 +08:00
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
);
````