mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-20 20:38:09 +08:00
20 lines
277 B
Markdown
20 lines
277 B
Markdown
|
# 简洁
|
||
|
|
||
|
- order: 6
|
||
|
|
||
|
简单地翻页
|
||
|
|
||
|
---
|
||
|
|
||
|
````jsx
|
||
|
var Pagination = antd.Pagination;
|
||
|
|
||
|
function onChange(page) {
|
||
|
console.log(page);
|
||
|
}
|
||
|
|
||
|
React.render(
|
||
|
<Pagination simple onChange={onChange} total={50} />,
|
||
|
document.getElementById('components-pagination-demo-simple'));
|
||
|
````
|