跳转到内容

Pagination 分页

使用分页组件,用户可以从一系列页面中选择某个特定的页面。

基础分页

Press Enter to start editing

描边分页

Press Enter to start editing

圆形分页

Press Enter to start editing

分页大小

Press Enter to start editing

按钮

你可以有选择地启用首尾页的按钮,或这禁用上一页和下一页的按钮。

Press Enter to start editing

分页范围

你可以使用 siblingRange 属性来指定当前页面两侧显示的数字多少,并使用boundaryRange属性来调整在起始和结束页码旁边显示的位数。

Press Enter to start editing

分页范围

你可以使用 siblingRange 属性来指定当前页面两侧显示的数字多少,并使用boundaryRange属性来调整在起始和结束页码旁边显示的位数。

Press Enter to start editing

可控制的分页

Page: 1

Press Enter to start editing

与 Router 整合

Press Enter to start editing

usePagination

For advanced customization use cases, a headless usePagination() hook is exposed. 它支持的选项与分页组件大致相同,但不包括与 JSX 渲染有关的所有属性。 它支持的选项与分页组件大致相同,但不包括与 JSX 渲染有关的所有属性。 The Pagination component is built on this hook.

import usePagination from '@mui/material/usePagination';

表格分页

Pagination 组件的设计是为了在不使用无限加载的情况下,将任意数量的项目进行分页。 比如说博客这样重视 SEO 的环境下,它是首选。

对于大型表格数据的分页,应该使用 TablePagination 组件。

Rows per page:

21–30 of 100

Press Enter to start editing

You can learn more about this use case in the table section of the documentation.

Accessibility

ARIA

The root node has a role of "navigation" and aria-label "pagination navigation" by default. The page items have an aria-label that identifies the purpose of the item ("go to first page", "go to previous page", "go to page 1" etc.). You can override these using the getItemAriaLabel prop.

键盘输入

The pagination items are in tab order, with a tabindex of "0".