ant-design/components/modal/demo/basic.md

49 lines
908 B
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 0
title: 基本
---
2015-06-04 21:17:52 +08:00
2015-06-12 17:44:29 +08:00
第一个对话框。
2015-06-04 21:17:52 +08:00
````jsx
import { Modal, Button } from 'antd';
2015-06-04 21:17:52 +08:00
const App = React.createClass({
2015-09-22 15:11:29 +08:00
getInitialState() {
return { visible: false };
2015-06-12 23:31:44 +08:00
},
showModal() {
2015-06-12 23:31:44 +08:00
this.setState({
2016-05-11 09:32:33 +08:00
visible: true,
2015-06-12 23:31:44 +08:00
});
2015-06-10 22:02:13 +08:00
},
2015-06-12 17:11:32 +08:00
handleOk() {
console.log('点击了确定');
2015-06-12 23:31:44 +08:00
this.setState({
2016-05-11 09:32:33 +08:00
visible: false,
2015-06-12 23:31:44 +08:00
});
2015-06-10 22:02:13 +08:00
},
2016-02-02 14:54:34 +08:00
handleCancel(e) {
console.log(e);
2015-09-08 12:38:21 +08:00
this.setState({
2016-05-11 09:32:33 +08:00
visible: false,
2015-09-08 12:38:21 +08:00
});
},
2015-06-12 17:11:32 +08:00
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>
);
2016-05-11 09:32:33 +08:00
},
2015-06-10 22:02:13 +08:00
});
2015-06-04 21:17:52 +08:00
ReactDOM.render(<App />, mountNode);
2015-06-04 21:17:52 +08:00
````