ant-design/components/alert/demo/closable.md

27 lines
738 B
Markdown
Raw Normal View History

2015-07-29 17:22:36 +08:00
# 可关闭的警告提示
- order: 1
显示关闭按钮,点击可关闭警告提示。
---
````jsx
var Alert = require('antd/lib/alert');
2015-07-29 18:44:56 +08:00
var onClose = function(e) {
console.log(e, '我要被关闭啦!');
};
React.render(<div>
<Alert message="警告提示的文案"
type="warn"
closable
onClose={onClose} />
2015-07-30 11:20:14 +08:00
<Alert message="错误提示的文案"
description="错误提示的辅助性文字介绍错误提示的辅助性文字介绍错误提示的辅助性文字介绍错误提示的辅助性文字介绍错误提示的辅助性文字介绍错误提示的辅助性文字介绍"
2015-07-29 18:44:56 +08:00
type="error"
closable
onClose={onClose} />
</div>, document.getElementById('components-alert-demo-closable'));
2015-08-03 11:38:55 +08:00
````