You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
894 B

10 years ago
# 基本
- order: 0
第一个对话框。
10 years ago
---
````jsx
import { Modal, Button } from 'antd';
10 years ago
const App = React.createClass({
getInitialState() {
return { visible: false };
10 years ago
},
showModal() {
10 years ago
this.setState({
visible: true
10 years ago
});
10 years ago
},
handleOk() {
console.log('点击了确定');
10 years ago
this.setState({
10 years ago
visible: false
10 years ago
});
10 years ago
},
handleCancel() {
this.setState({
visible: false
});
},
render() {
10 years ago
return <div>
<Button type="primary" onClick={this.showModal}>显示对话框</Button>
<Modal title="第一个 Modal" visible={this.state.visible}
onOk={this.handleOk} onCancel={this.handleCancel}>
<p>对话框的内容</p>
<p>对话框的内容</p>
<p>对话框的内容</p>
</Modal>
10 years ago
</div>;
}
});
10 years ago
9 years ago
ReactDOM.render(<App /> , document.getElementById('components-modal-demo-basic'));
10 years ago
````