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.

67 lines
1.3 KiB

---
order: 11
title:
zh-CN: 自定义页脚按钮属性
en-US: Customize footer buttons props
---
## zh-CN
传入 `okButtonProps``cancelButtonProps` 可分别自定义确定按钮和取消按钮的 props。
## en-US
Passing `okButtonProps` and `cancelButtonProps` will customize the OK button and cancel button props.
```jsx
import { Modal, Button } from 'antd';
class App extends React.Component {
state = { visible: false };
7 years ago
showModal = () => {
this.setState({
visible: true,
});
};
7 years ago
handleOk = e => {
console.log(e);
this.setState({
visible: false,
});
};
7 years ago
handleCancel = e => {
console.log(e);
this.setState({
visible: false,
});
};
7 years ago
render() {
return (
<>
<Button type="primary" onClick={this.showModal}>
Open Modal with customized button props
</Button>
<Modal
title="Basic Modal"
visible={this.state.visible}
onOk={this.handleOk}
onCancel={this.handleCancel}
okButtonProps={{ disabled: true }}
cancelButtonProps={{ disabled: true }}
>
<p>Some contents...</p>
<p>Some contents...</p>
<p>Some contents...</p>
</Modal>
</>
);
}
}
ReactDOM.render(<App />, mountNode);
```