6.9.3 水平表单

6.9.3 水平表单

如果希望将<label>元素和表单控件放在同一行,可为<form>元素或表单控件的容器设置class="form-horizontal",再结合前面介绍的网格布局即可实现水平表单。
为表单设置.form-horizontal样式之后,表单内的.form-group将表现成.row样式行为,因此此时不再需要设置.row 样式,直接将.col-xx-N样式应用于<label>元素和表单控件的容器即可。
此外,最好为<label>元素添加.control-label 样式,这样可保证这些label 的大小与表单控件大小一致,具体可参考6.9.5节的内容。

程序示例

例如如下代码示范了如何实现水平表单。

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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!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">
<!-- 水平表单 -->
<form action="http://www.fkit.org" class="form-horizontal">
<!-- .form-group样式表现出.row行为 -->
<div class="form-group">
<!-- 标签占三列 -->
<label for="name" class="col-sm-3 control-label">用户名</label>
<!-- 文本框占9列 -->
<div class="col-sm-9">
<!-- .form-control样式应用于表单控件 -->
<input type="text" class="form-control" id="name" placeholder="用户名">
</div>
</div>
<div class="form-group">
<label for="passwd" class="col-sm-3 control-label">密码</label>
<div class="col-sm-9">
<!-- .form-control样式应用于表单控件 -->
<input type="password" class="form-control" id="passwd" placeholder="密码">
</div>
</div>
<div class="form-group">
<label for="photo" class="col-sm-3 control-label">选择照片上传</label>
<div class="col-sm-9">
<input type="file" id="photo">
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-3 col-sm-9">
<!-- .checkbox样式的元素作为容器 -->
<div class="checkbox">
<label>
<input type="checkbox"> 婚否
</label>
</div>
</div>
</div>
<div class="form-group">
<div class="col-sm-offset-3 col-sm-9">
<button type="submit" class="btn btn-default">提交</button>
</div>
</div>
</form>
</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>

将表单样式设为.form-horizontal之后,表单内的.form-group样式代替了网格布局中的.row 样式,因此在该页面中的每行都需要指定一个class="form-group"<div>元素,这样即可生成网格布局中的行。接下来将<label>元素设为.col-sm-3样式,这表明该标签将会占据3列宽度;将表单控件所在的<div>元素设为.col-sm-9样式,这表明该标签将会占据9列宽度。