博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Bootstrap表单
阅读量:6581 次
发布时间:2019-06-24

本文共 3553 字,大约阅读时间需要 11 分钟。

Bootstrap 提供了下列类型的表单布局:

  • 垂直表单(默认) -> 这个不好看,都是手机版了,PC版占一排不好看;
  • 内联表单 -> 我相信这个才是你想要的,PC版响应横排,手机版响应竖排。
  • 水平表单 -> 用栅格系统控制显示

一、垂直表单

垂直表单使用的标准步骤

  1. <form> 元素添加 role="form"。
  2. 把标签和控件放在一个带有"form-group"的<div> 中,获取最佳间距。
  3. 向所有的文本元素 <input>、<textarea> 和 <select> 添加"form-control"样式。
1
2
3
4
5
6
7
8
9
10
<
form 
role="form">
    
<
div 
class="form-group">
        
<
label 
for="name">名称</
label
>
        
<
input 
type="text" class="form-control" id="name" placeholder="请输入名称">
    
</
div
>
    
<
div 
class="form-group">
        
<
label 
for="name">年龄</
label
>
        
<
input 
type="text" class="form-control" id="name" placeholder="请输入年龄">
    
</
div
>
</
form
>

二、内联布局

内联布局与垂直布局其他完全一样,只是需要给<form role="form">加个class=form-inline。

1
<
form 
role="form" class="form-inline">

使用这样的内联布局之后,就是大屏幕横排显示,小屏幕垂直显示。

小屏幕:

大屏幕:

内联布局与垂直布局基本一样,只需要给Form加上class="form-inline"。

三、水平表单

水平表单指的是Label标签与控件(input、button)之间的水平

其使用步骤如下:

  • 向父 <form> 元素添加 class .form-horizontal。
  • 把标签和控件放在一个带有 class .form-group 的 <div> 中。
  • 向标签添加 class .control-label。
1
2
3
4
5
6
7
8
9
10
11
12
13
<
form 
role="form" class="form-horizontal">
    
<
div 
class="form-group">
        
<
label 
for="name" class="control-label col-sm-2">名称</
label
>
        
<
div 
class="col-sm-10">
            
<
input 
type="text" class="form-control" id="name" placeholder="请输入名称">
        
</
div
>
    
</
div
>
    
<
div 
class="form-group">
        
<
label 
for="name" class="control-label col-sm-2">年龄</
label
>
        
<
div 
class="col-sm-10">
            
<
input 
type="text" class="form-control col-sm-10" id="name" placeholder="请输入年龄">
        
</
div
><
br
>    </
div
>
</
form
>

使用了form-horizontal之后,才能给input控件套div,并且div也能够使用网格系统了。form-horizontal样式改变了.form-group的行为,将其表现得像栅格中的行(row)一样。

四、复选框Checkbox和单选框Radio

这两个控件在Bootstrap里面比较特殊,有时候需要横排,有时候需要竖排。

它也跟form一样,也是有内联的。

  • 如果需要内联显示,则设置其外层包围的label的class为checkbox-inline。
  • 如果需要默认的竖排显示,则设置外层包围的label的class为heckbox。
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
<
form 
role="form">
    
<!-- 复选 -->
    
<
div 
class="checkbox">
        
<
label
><
input 
type="checkbox" value="">香蕉</
label
>
    
</
div
>
    
<
div 
class="checkbox">
        
<
label
><
input 
type="checkbox" value="">苹果</
label
>
    
</
div
>
    
<
div 
class="checkbox">
        
<
label
><
input 
type="checkbox" value="">西瓜</
label
>
    
</
div
>
 
    
<
div 
class="checkbox-inline">
        
<
label
><
input 
type="checkbox" value="">香蕉</
label
>
    
</
div
>
    
<
div 
class="checkbox-inline">
        
<
label
><
input 
type="checkbox" value="">苹果</
label
>
    
</
div
>
    
<
div 
class="checkbox-inline">
        
<
label
><
input 
type="checkbox" value="">西瓜</
label
>
    
</
div
>
 
    
<!-- 单选 -->
    
<
div 
class="radio">
        
<
label
>
            
<
input 
type="radio" name="optionsRadios" value="option1" checked> 男
        
</
label
>
    
</
div
>
    
<
div 
class="radio">
        
<
label
>
            
<
input 
type="radio" name="optionsRadios" value="option2" checked> 女
        
</
label
>
    
</
div
>
 
    
<
div 
class="checkbox-inline">
        
<
label
>
            
<
input 
type="radio" name="optionsRadios" value="option1" checked> 男
        
</
label
>
    
</
div
>
    
<
div 
class="checkbox-inline">
        
<
label
>
            
<
input 
type="radio" name="optionsRadios" value="option2" checked> 女
        
</
label
>
    
</
div
>
</
form
>

其显示效果如下:

五、静态控件

静态控件指的是那些不能够改变值的控件,在bootstrap中,当您需要在一个水平表单内的表单标签后放置纯文本时,请在 <p> 上使用class="form-control-static"。

刘玄德

显示效果如下:

六、表单帮助文本

Bootstrap表单帮助文本一般指的是输入录入的提示,通常在input后面跟个.help-block的HTML元素就可以了。

1
2
3
4
5
6
7
8
<
form 
role="form">
    
<
div 
class="form-group">
        
<
input 
class="form-control" type="text" >
        
<
span 
class="help-block">
            
特别提醒,如果你没有什么,就不要输入了。
        
</
span
>
    
</
div
>
</
form
>

显示效果如下:

除了这些之外,Bootstrap还有很多用来控制input高度啊,输入是否成功啊等等的一些列样式,这些只要查一下,找到相应的关键字就能够用,以后遇到奇葩的再记录。 

转载地址:http://vlnno.baihongyu.com/

你可能感兴趣的文章
学习日志---linux 磁盘分区的挂载
查看>>
Ubuntu HTTP方式访问SVN配置
查看>>
我的友情链接
查看>>
基于nginx安装nagios
查看>>
华为交换机流量监管(限速)那点事1儿
查看>>
我的友情链接
查看>>
Computer
查看>>
在北京地区IT信息业高管类薪资今年未见上涨趋势
查看>>
《跟老男孩学Linux运维之shell编程实战》-第三章 shell变量知识进阶
查看>>
关于innodb_data_file_path设置
查看>>
NSSet for in遍历 OC排序
查看>>
调试日志——基于stm32的智能声光报警器(二)
查看>>
CentOS 6.5编译安装最新cmake-3.0.2
查看>>
基于Spring源码分析AOP的实现机制
查看>>
Ipad mini 停用后如何恢复
查看>>
第一次写技术博客~~记录一个简单的取消延时触发的方法
查看>>
VC入门学习---在屏幕上显示文本
查看>>
shell中exec解析
查看>>
第一节:hello word
查看>>
emacs 命令
查看>>