pager
UK [?pe?d??(r)] US [?ped??]
n.Pageer
Bootstrap pager style syntax
Function: A simple paging link, the link is centered.
Bootstrap pager style example
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>Bootstrap 實例 - 標(biāo)簽頁與膠囊式標(biāo)簽頁</title> <link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/3.3.7/css/bootstrap.min.css"> <script src="https://cdn.bootcss.com/jquery/2.1.1/jquery.min.js"></script> <script src="https://cdn.bootcss.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> </head> <body> <div class="container"> <h2>分頁</h2> <p>.pager 類提供了一個簡單的分頁樣式:</p> <ul class="pager"> <li><a href="#">上一頁</a></li> <li><a href="#">下一頁</a></li> </ul> </div> </body> </html>
Click the "Run instance" button to view the online instance