ant-design/components/notification/demo/onclose.md

28 lines
693 B
Markdown
Raw Normal View History

2015-07-29 20:08:16 +08:00
# 回调函数
- order: 2
点击关闭按钮时触发回调函数。
---
````jsx
2015-07-30 21:04:52 +08:00
var notification = require('antd/lib/notification');
2015-07-29 20:08:16 +08:00
var close = function() {
console.log("我被默认的关闭按钮关闭了!");
2015-07-30 21:04:52 +08:00
};
2015-07-29 20:08:16 +08:00
var openNotification = function() {
var args = {
message: "这是标题",
description: "这是提示框的文案这是提示框示框的文案这是提示是提示框的文案这是提示框的文案",
2015-07-30 21:04:52 +08:00
onClose: close
2015-07-29 20:08:16 +08:00
};
2015-07-31 18:13:32 +08:00
notification.open(args);
2015-07-30 21:04:52 +08:00
};
2015-07-29 20:08:16 +08:00
React.render(
2015-07-30 21:04:52 +08:00
<button className="ant-btn ant-btn-primary" onClick={openNotification}>关闭按钮触发回调函数</button>
, document.getElementById('components-notification-demo-onclose'));
2015-07-29 20:08:16 +08:00
````