# 确认对话框 - order: 3 使用 `confirm()` 可以快捷地弹出确认框。 --- ````jsx import { Modal, Button } from 'antd'; const confirm = Modal.confirm; function showConfirm(){ confirm({ title: '您是否确认要删除这项内容', content: '一些解释', onOk: function() { console.log('确定'); }, onCancel: function() {} }); } ReactDOM.render( , document.getElementById('components-modal-demo-confirm')); ````