禁用 Bootstrap 列表组中的列表项


使用 Bootstrap 中的 .disabled 类禁用 Bootstrap 列表组中的列表项。

你可以尝试运行以下代码来禁用列表项 -

范例

动态示例

<!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>Beverages</h2>
         <div class = "list-group">
            <a href = "#" class = "list-group-item">Gatorade</a>
            <a href = "#" class = "list-group-item">Coca Cola</a>
            <a href = "#" class = "list-group-item">Pepsi</a>
            <a href = "#" class =" list-group-item disabled">Sting</a>
         </div>
      </div>
   </body>
</html>

更新时间: 12-Jun-2020

1K+ 浏览

开启你的 事业

完成课程认证

开始学习
Advertisements
© . All rights reserved.