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.

49 lines
973 B

10 years ago
# 基本
- order: 0
第一个对话框。
10 years ago
---
````jsx
10 years ago
var Modal = antd.Modal;
var Button = antd.Button;
10 years ago
var 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({
confirmLoading: false,
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}
confirmLoading={this.state.confirmLoading} onOk={this.handleOk} onCancel={this.handleCancel}>
<p>对话框的内容</p>
<p>对话框的内容</p>
<p>对话框的内容</p>
</Modal>
10 years ago
</div>;
}
});
10 years ago
React.render(<App /> , document.getElementById('components-modal-demo-basic'));
10 years ago
````