7.13.4 列表项的状态
Bootstrap
为列表项状态提供了如下两种样式。
样式 |
描述 |
.active |
该样式表明列表项目当前处于激活状态。 |
.disabled |
该样式表明列表项目当前处于不可用状态。 |
程序示例
如下代码示范了列表项的状态。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
| <!DOCTYPE html> <html>
<head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1"> <title> 列表项状态 </title> <link rel="stylesheet" href="../bootstrap/css/bootstrap.min.css"> <link rel="stylesheet" href="../bootstrap/css/bootstrap-theme.min.css"> </head>
<body> <div class="container"> <div class="list-group"> <button type="button" class="list-group-item"> 普通按钮列表项 </button> <button type="button" class="list-group-item active"> 激活状态的列表项</button> <button type="button" class="list-group-item disabled"> 禁用状态的列表项</button> </div> </div> <script type="text/javascript" src="../jquery-3.1.1.js"></script> <script type="text/javascript" src="../bootstrap/js/bootstrap.min.js"></script> </body>
</html>
|
在代码中定义了3个列表项,其中第二个列表项处于激活状态,第三个列表项处于不可用状态。