---
category: 2
title: 跳转
title_en: Jumper
---

 zh-CN

快速跳转到某一页。

 en-US

Jump to a page directly.

````jsx
import { Pagination } from 'parkball';

function onChange(pageNumber) {
  console.log('Page: ', pageNumber);
}

ReactDOM.render(
  <Pagination showQuickJumper defaultCurrent={2} total={500} onChange={onChange} />,
  mountNode
);
````
