ant-design/components/pagination/demo/itemRender.md

31 lines
501 B
Markdown
Raw Normal View History

2017-08-30 14:02:49 +08:00
---
2020-03-30 10:50:29 +08:00
order: 11
2017-08-30 14:02:49 +08:00
title:
zh-CN: 上一步和下一步
en-US: Prev and next
---
## zh-CN
修改上一步和下一步为文字链接。
## en-US
Use text link for prev and next button.
2019-05-07 14:57:32 +08:00
```jsx
2017-08-30 14:02:49 +08:00
import { Pagination } from 'antd';
function itemRender(current, type, originalElement) {
if (type === 'prev') {
return <a>Previous</a>;
2019-05-07 14:57:32 +08:00
}
if (type === 'next') {
2017-08-30 14:02:49 +08:00
return <a>Next</a>;
}
return originalElement;
}
export default () => <Pagination total={500} itemRender={itemRender} />;
2019-05-07 14:57:32 +08:00
```