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
904 B

---
order: 0
title: 基本
---
10 years ago
第一个对话框。
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(e) {
console.log(e);
this.setState({
visible: false
});
},
render() {
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>
</div>
);
10 years ago
}
});
10 years ago
ReactDOM.render(<App />, mountNode);
10 years ago
````