7.4.3 单选框或多选框作为附加元素

7.4.3 单选框或多选框作为附加元素

Bootstrap也允许单选框多选框作为输入框组的附加元素。只要将单选框或多选框包裹在被指定了.input-group-addon样式的<span>元素中即可。还有就是,作为输入框组附加元素的单选框和多选框不能被指定class="control-form"样式

程序示例

例如如下代码。

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
41
42
43
44
45
46
<!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">
<style type="text/css">
.container>div {
margin-bottom: 10px;
}
</style>
</head>

<body>
<div class="container">
<div class="input-group">
<!-- .form-control样式应用于表单控件 -->
<input type="text" class="form-control" id="name" placeholder="姓名">
<!-- .input-group-addon样式应用于输入框组的附件 -->
<span class="input-group-addon">
<label for="checkboxBtn1">多选按钮1</label>
<input type="checkbox" id="checkboxBtn1" aria-label="多选按钮1">
<label for="checkboxBtn2">多选按钮2</label>
<input type="checkbox" id="checkboxBtn2" aria-label="多选按钮2">
</span>
</div>
<div class="input-group">
<!-- .form-control样式应用于表单控件 -->
<input type="text" class="form-control" id="price" placeholder="乱填吧">
<!-- .input-group-addon样式应用于输入框组的附件 -->
<span class="input-group-addon">
<label for="radioBtn1">单选按钮1</label>
<input type="radio" name="radioName" id="radioBtn1" aria-label="单选按钮1">
<label for="radioBtn2">单选按钮2</label>
<input type="radio" name="radioName" id="radioBtn2" aria-label="单选按钮2">
</span>
</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>