ant-design/components/notification/demo/with-btn.md

33 lines
820 B
Markdown
Raw Normal View History

2015-07-29 20:08:16 +08:00
# 自定义关闭按钮
2015-07-28 15:40:28 +08:00
2015-08-03 15:17:12 +08:00
- order: 4
2015-07-28 15:40:28 +08:00
2015-07-29 20:08:16 +08:00
自定义关闭按钮的样式和文字。
2015-07-28 15:40:28 +08:00
---
````jsx
2015-07-30 21:04:52 +08:00
var notification = require('antd/lib/notification');
2015-07-28 15:40:28 +08:00
2015-07-31 18:13:32 +08:00
var close = function() {
notification.close('singleKey2');
};
var btn = <button onClick={close} className="ant-btn ant-btn-primary ant-btn-sm">自定义关闭按钮</button>;
2015-07-28 15:40:28 +08:00
2015-07-29 20:08:16 +08:00
var openNotification = function() {
2015-07-28 15:40:28 +08:00
var args = {
2015-07-29 20:08:16 +08:00
message: "这是标题",
description: "这是提示框的文案这是提示框示框的文案这是提示是提示框的文案这是提示框的文案",
2015-07-31 18:13:32 +08:00
btn: btn,
key: 'singleKey2'
2015-08-03 18:14:04 +08:00
};
2015-07-31 18:13:32 +08:00
notification.open(args);
2015-07-30 21:04:52 +08:00
};
2015-07-28 15:40:28 +08:00
React.render(
2015-08-03 18:14:04 +08:00
<div>
<button className="ant-btn ant-btn-primary" onClick={openNotification}>自定义关闭按钮</button>
</div>,
document.getElementById('components-notification-demo-with-btn'));
2015-07-28 15:40:28 +08:00
````