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

37 lines
710 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 2
title:
zh-CN: 可关闭的警告提示
en-US: Closable
2016-03-31 09:40:55 +08:00
---
2015-07-29 17:22:36 +08:00
## zh-CN
2015-07-29 17:22:36 +08:00
显示关闭按钮,点击可关闭警告提示。
## en-US
To show close button.
2017-02-13 10:55:53 +08:00
````jsx
import { Alert } from 'antd';
2015-07-29 17:22:36 +08:00
const onClose = function (e) {
console.log(e, 'I was closed.');
2015-07-29 18:44:56 +08:00
};
2015-10-20 16:47:55 +08:00
ReactDOM.render(<div>
2016-08-03 14:54:10 +08:00
<Alert message="Warning Text Warning Text Warning TextW arning Text Warning Text Warning TextWarning Text"
2016-03-28 14:38:25 +08:00
type="warning"
2015-07-29 18:44:56 +08:00
closable
onClose={onClose}
/>
<Alert message="Error Text"
description="Error Description Error Description Error Description Error Description Error Description Error Description"
2015-07-29 18:44:56 +08:00
type="error"
closable
onClose={onClose}
/>
</div>, mountNode);
2015-10-20 16:47:55 +08:00
````