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

83 lines
1.4 KiB
Markdown
Raw Normal View History

2016-03-31 09:40:55 +08:00
---
order: 3
2016-10-07 18:00:48 +08:00
title:
2016-08-11 11:41:06 +08:00
zh-CN: 确认对话框
en-US: Confirmation modal dialog
2016-03-31 09:40:55 +08:00
---
2015-06-12 19:41:30 +08:00
2016-08-11 11:41:06 +08:00
## zh-CN
2015-06-12 19:41:30 +08:00
使用 `confirm()` 可以快捷地弹出确认框。
2016-08-11 11:41:06 +08:00
## en-US
To use `confirm()` to popup a confirmation modal dialog.
2017-02-13 10:55:53 +08:00
````jsx
import { Modal, Button } from 'antd';
2018-06-27 15:55:04 +08:00
2015-11-25 16:17:58 +08:00
const confirm = Modal.confirm;
2015-06-12 19:41:30 +08:00
function showConfirm() {
2015-06-12 19:41:30 +08:00
confirm({
title: 'Do you Want to delete these items?',
content: 'Some descriptions',
onOk() {
2016-08-11 11:41:06 +08:00
console.log('OK');
2015-06-12 19:41:30 +08:00
},
onCancel() {
console.log('Cancel');
2017-07-17 10:01:23 +08:00
},
2017-07-16 17:44:52 +08:00
});
}
function showDeleteConfirm() {
confirm({
title: 'Are you sure delete this task?',
content: 'Some descriptions',
okText: 'Yes',
okType: 'danger',
cancelText: 'No',
onOk() {
console.log('OK');
},
2017-07-16 17:44:52 +08:00
onCancel() {
console.log('Cancel');
2017-07-17 10:01:23 +08:00
},
2015-06-12 19:41:30 +08:00
});
}
function showPropsConfirm() {
confirm({
title: 'Are you sure delete this task?',
content: 'Some descriptions',
okText: 'Yes',
okType: 'danger',
okButtonProps: {
disabled: true,
},
cancelText: 'No',
onOk() {
console.log('OK');
},
onCancel() {
console.log('Cancel');
},
});
}
2015-10-20 16:47:55 +08:00
ReactDOM.render(
2017-07-16 17:44:52 +08:00
<div>
<Button onClick={showConfirm}>
Confirm
</Button>
<Button onClick={showDeleteConfirm} type="dashed">
Delete
</Button>
<Button onClick={showPropsConfirm} type="dashed">
With extra props
</Button>
2018-06-27 15:55:04 +08:00
</div>,
mountNode);
2015-06-12 19:41:30 +08:00
````