2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 2
|
2016-07-04 10:49:26 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 可关闭的警告提示
|
|
|
|
en-US: Closable
|
2016-03-31 09:40:55 +08:00
|
|
|
---
|
2015-07-29 17:22:36 +08:00
|
|
|
|
2016-07-04 10:49:26 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2015-07-29 17:22:36 +08:00
|
|
|
显示关闭按钮,点击可关闭警告提示。
|
|
|
|
|
2016-07-04 10:49:26 +08:00
|
|
|
## en-US
|
|
|
|
|
|
|
|
To show close button.
|
|
|
|
|
2017-02-13 10:55:53 +08:00
|
|
|
````jsx
|
2015-10-28 20:55:49 +08:00
|
|
|
import { Alert } from 'antd';
|
2015-07-29 17:22:36 +08:00
|
|
|
|
2016-01-27 16:53:05 +08:00
|
|
|
const onClose = function (e) {
|
2016-07-04 10:49:26 +08:00
|
|
|
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
|
2016-06-06 13:54:10 +08:00
|
|
|
onClose={onClose}
|
|
|
|
/>
|
2016-07-04 10:49:26 +08:00
|
|
|
<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
|
2016-06-06 13:54:10 +08:00
|
|
|
onClose={onClose}
|
|
|
|
/>
|
2015-12-29 12:08:58 +08:00
|
|
|
</div>, mountNode);
|
2015-10-20 16:47:55 +08:00
|
|
|
````
|