You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
700 B

---
order: 2
title: 可关闭的警告提示
---
显示关闭按钮,点击可关闭警告提示。
````jsx
import { Alert } from 'antd';
const onClose = function (e) {
console.log(e, '我要被关闭啦!');
};
9 years ago
ReactDOM.render(<div>
<Alert message="警告提示的文案"
type="warning"
closable
onClose={onClose}
/>
<Alert message="错误提示的文案"
description="错误提示的辅助性文字介绍错误提示的辅助性文字介绍错误提示的辅助性文字介绍错误提示的辅助性文字介绍错误提示的辅助性文字介绍错误提示的辅助性文字介绍"
type="error"
closable
onClose={onClose}
/>
</div>, mountNode);
9 years ago
````