You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
387 B
Markdown
24 lines
387 B
Markdown
9 years ago
|
---
|
||
|
order: 7
|
||
|
title: 手动移除
|
||
|
---
|
||
|
|
||
|
手动关闭modal。
|
||
|
|
||
|
````jsx
|
||
|
import { Modal, Button } from 'antd';
|
||
|
|
||
|
function success() {
|
||
|
const modal = Modal.success({
|
||
|
title: '这是一条通知信息',
|
||
|
content: '一秒后自动移除',
|
||
|
});
|
||
|
setTimeout(() => modal.destroy(), 1000);
|
||
|
}
|
||
|
|
||
|
|
||
|
ReactDOM.render(<div>
|
||
|
<Button onClick={success}>成功提示</Button>
|
||
|
</div>, mountNode);
|
||
|
````
|