mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-03 04:30:06 +08:00
28 lines
491 B
Markdown
28 lines
491 B
Markdown
|
# 确认对话框
|
||
|
|
||
|
- order: 3
|
||
|
|
||
|
使用 `confirm()` 可以快捷地弹出确认框。
|
||
|
|
||
|
---
|
||
|
|
||
|
````jsx
|
||
|
var confirm = antd.confirm;
|
||
|
|
||
|
function showConfirm(){
|
||
|
confirm({
|
||
|
title: '您是否确认要删除这项内容',
|
||
|
content: '一些解释',
|
||
|
onOk: function() {
|
||
|
alert('确定');
|
||
|
},
|
||
|
onCancel: function() {}
|
||
|
});
|
||
|
}
|
||
|
|
||
|
React.render(
|
||
|
<button className="ant-btn" onClick={showConfirm}>
|
||
|
确认对话框
|
||
|
</button>, document.getElementById('components-modal-demo-confirm'));
|
||
|
````
|