You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design/components/popconfirm/demo/placement.md

38 lines
872 B
Markdown

# 位置
- order: 1
位置有四个方向。
---
````jsx
var Popconfirm = antd.Popconfirm;
var text = '确认文案';
function confirm() {
console.log('点击了确定');
}
React.render(<div>
<Popconfirm placement="left" title={text} onConfirm={confirm}>
<button className="ant-btn"></button>
</Popconfirm>
<Popconfirm placement="right" title={text} onConfirm={confirm}>
<button className="ant-btn"></button>
</Popconfirm>
<Popconfirm placement="top" title={text} onConfirm={confirm}>
<button className="ant-btn"></button>
</Popconfirm>
<Popconfirm placement="bottom" title={text} onConfirm={confirm}>
<button className="ant-btn"></button>
</Popconfirm>
</div>, document.getElementById('components-popconfirm-demo-placement'));
````
<style>
.code-box-demo .ant-popover-wrap > .ant-btn {
margin-right: 1em;
}
</style>