7.13.2 链接列表组

7.13.2 链接列表组

除了可使用<ul><li>元素构建列表组之外,Bootstrap还支持使用<a>元素来构建列表项,此时需要使用<div>元素作为列表组的容器。通过这种方式构建的列表组,其中的每个列表项都是一个链接。

程序示例

如下代码示范了链接列表组的构建方法。

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
32
33
34
35
36
37
38
39
40
<!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">
<!-- 链接列表项 -->
<a href="#" class="list-group-item">
<!-- 徽章 -->
<span class="badge">16</span>
疯狂前端开发讲义
</a>
<a href="#" class="list-group-item">
<span class="badge">20</span>
疯狂Android讲义
</a>
<a href="#" class="list-group-item">
<span class="badge">5</span>
疯狂iOS讲义
</a>
<a href="#" class="list-group-item">
<span class="badge">9</span>
疯狂Swift讲义
</a>
</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>