---
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 };
showModal = () => {
this.setState({
visible: true,
});
};
handleOk = e => {
console.log(e);
this.setState({
visible: false,
});
};
handleCancel = e => {
console.log(e);
this.setState({
visible: false,
});
};
render() {
return (
<>
Some contents...
Some contents...
Some contents...
>
);
}
}
ReactDOM.render(, mountNode);
```