2016-03-31 09:40:55 +08:00
|
|
|
---
|
|
|
|
order: 3
|
2016-08-26 14:42:41 +08:00
|
|
|
title:
|
|
|
|
zh-CN: 从浮层内关闭
|
|
|
|
en-US: Controlling the close of the dialog
|
2016-03-31 09:40:55 +08:00
|
|
|
---
|
2015-11-10 16:07:23 +08:00
|
|
|
|
2016-08-26 14:42:41 +08:00
|
|
|
## zh-CN
|
|
|
|
|
2015-11-10 16:07:23 +08:00
|
|
|
使用 `visible` 属性控制浮层显示。
|
|
|
|
|
2016-08-26 14:42:41 +08:00
|
|
|
## en-US
|
|
|
|
|
|
|
|
Use `visible` prop to control the display of the card.
|
|
|
|
|
2015-11-10 16:07:23 +08:00
|
|
|
````jsx
|
|
|
|
import { Popover, Button } from 'antd';
|
|
|
|
|
|
|
|
const App = React.createClass({
|
|
|
|
getInitialState() {
|
|
|
|
return {
|
2016-05-11 09:32:33 +08:00
|
|
|
visible: false,
|
2015-11-10 16:07:23 +08:00
|
|
|
};
|
|
|
|
},
|
|
|
|
hide() {
|
|
|
|
this.setState({
|
2016-05-11 09:32:33 +08:00
|
|
|
visible: false,
|
2015-11-10 16:07:23 +08:00
|
|
|
});
|
|
|
|
},
|
|
|
|
handleVisibleChange(visible) {
|
|
|
|
this.setState({ visible });
|
|
|
|
},
|
|
|
|
render() {
|
2016-01-07 16:29:12 +08:00
|
|
|
const content = (
|
|
|
|
<div>
|
|
|
|
<a onClick={this.hide}>关闭卡片</a>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
return (
|
2016-04-01 14:28:35 +08:00
|
|
|
<Popover content={content} title="标题" trigger="click"
|
2016-06-06 13:54:10 +08:00
|
|
|
visible={this.state.visible} onVisibleChange={this.handleVisibleChange}
|
|
|
|
>
|
2016-01-07 16:29:12 +08:00
|
|
|
<Button type="primary">点击弹出卡片</Button>
|
|
|
|
</Popover>
|
|
|
|
);
|
2016-05-11 09:32:33 +08:00
|
|
|
},
|
2015-11-10 16:07:23 +08:00
|
|
|
});
|
|
|
|
|
2015-12-29 12:08:58 +08:00
|
|
|
ReactDOM.render(<App />, mountNode);
|
2015-11-10 16:07:23 +08:00
|
|
|
````
|