mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-04 17:09:46 +08:00
27 lines
723 B
Markdown
27 lines
723 B
Markdown
# 可关闭的警告提示
|
|
|
|
- order: 1
|
|
|
|
显示关闭按钮,点击可关闭警告提示。
|
|
|
|
---
|
|
|
|
````jsx
|
|
var Alert = antd.Alert;
|
|
|
|
var onClose = function(e) {
|
|
console.log(e, '我要被关闭啦!');
|
|
};
|
|
|
|
React.render(<div>
|
|
<Alert message="警告提示的文案"
|
|
type="warn"
|
|
closable
|
|
onClose={onClose} />
|
|
<Alert message="错误提示的文案"
|
|
description="错误提示的辅助性文字介绍错误提示的辅助性文字介绍错误提示的辅助性文字介绍错误提示的辅助性文字介绍错误提示的辅助性文字介绍错误提示的辅助性文字介绍"
|
|
type="error"
|
|
closable
|
|
onClose={onClose} />
|
|
</div>, document.getElementById('components-alert-demo-closable'));
|
|
```` |