ant-design/components/popover/demo/control.md

48 lines
843 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 3
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
## zh-CN
2015-11-10 16:07:23 +08:00
使用 `visible` 属性控制浮层显示。
## en-US
Use `visible` prop to control the display of the card.
2017-02-13 10:55:53 +08:00
````jsx
2015-11-10 16:07:23 +08:00
import { Popover, Button } from 'antd';
class App extends React.Component {
state = {
visible: false,
}
hide = () => {
2015-11-10 16:07:23 +08:00
this.setState({
2016-05-11 09:32:33 +08:00
visible: false,
2015-11-10 16:07:23 +08:00
});
}
handleVisibleChange = (visible) => {
2015-11-10 16:07:23 +08:00
this.setState({ visible });
}
2015-11-10 16:07:23 +08:00
render() {
return (
2016-10-07 15:20:10 +08:00
<Popover
content={<a onClick={this.hide}>Close</a>}
title="Title"
trigger="click"
visible={this.state.visible}
onVisibleChange={this.handleVisibleChange}
>
2017-01-25 21:27:14 +08:00
<Button type="primary">Click me</Button>
</Popover>
);
}
}
2015-11-10 16:07:23 +08:00
ReactDOM.render(<App />, mountNode);
2015-11-10 16:07:23 +08:00
````