使用 Bootstrap 停用分頁連結


在 Bootstrap 中將 .disabled 類用於 .pagination 來停用分頁連結。

你可以嘗試執行以下程式碼來停用分頁連結

示例

即時演示

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Example</title>
      <link href = "/bootstrap/css/bootstrap.min.css" rel = "stylesheet">
      <script src = "/scripts/jquery.min.js"></script>
         <script src = "/bootstrap/js/bootstrap.min.js"></script>
   </head>
   <body>
      <div class = "container">
         <h2>Java Tutorial</h2>
         <p>The following are the lessons of Java Tutorial:</p>
         <ul class = "pagination">
            <li class = "disabled"><a href = "#">1</a></li>
            <li><a href = "#">2</a></li>
            <li><a href = "#">3</a></li>
            <li><a href = "#">4</a></li>
            <li><a href = "#">5</a></li>
            <li><a href = "#">6</a></li>
            <li><a href = "#">7</a></li>
            <li class = "disabled"><a href = "#">8</a></li>
         </ul>
      </div>
   </body>
</html>

更新日期:15-06-2020

895 次瀏覽

助力你的 職業生涯

完成課程並獲得認證

開始
廣告
© . All rights reserved.