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

32 lines
517 B
Markdown
Raw Normal View History

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