如何使用bootstrap制作form表单


本文摘自PHP中文网,作者不言,侵删。

Bootstrap可以轻松创建经常看到的表单类型,编码非常的简单,所以本篇文章我们就来看看使用bootstrap创建表单的方法。

制作表单的方法

首先利用<form>标签设置表单,然后为表单的每个元素设置class =”form - group“(用“<div>”等标签设置你想要设置class =”form-group“的范围)。最后通过在<input>标签中设置class =”form-control“来完成。

我们来看bootstrap创建表单的具体示例

代码如下

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

<!DOCTYPE html>

<html>

  <head>

    <meta charset="utf-8">

    <title>sample</title>

    <script src="bootstrap-4.2.1-dist/js/bootstrap.min.js" type="text/javascript"></script>

    <link rel="stylesheet" type="text/css" href="bootstrap-4.2.1-dist/css/bootstrap.min.css" />

  </head>

  <body style="padding: 50px;">

    <form>

      <div class="form-group">

        <label for="email">电子邮箱</label>

        <input type="email" class="form-control" id="email" placeholder="电子邮箱">

      </div>

      <div class="form-group">

        <label for="pass">密码</label>

        <input type="password" class="form-control" id="pass" placeholder="密码">

      </div>

      <div>

        <label for="file">文件上传:</label>

 

        <input type="file" id="file">

        <p class="help-block">显示文件帮助。</p>

      </div>

      <div class="check">

        <label>

          <input type="checkbox">确认

        </label>

      </div>

      <button type="submit" class="btu btn-default">发送</button>

    </form>

  </body>

</html>

运行效果如下:

微信截图_20190103151054.png

此外,还可以创建内联表单。我们只要在<form>标签中添加class =”form-inline“就可以了,在这里就不多说了,有兴趣的朋友可以自己试一试。

总结,以上就是本篇文章的全部内容了,更多精彩内容大家可以关注php中文网其他相关教程栏目!!!

以上就是如何使用bootstrap制作form表单的详细内容,更多文章请关注木庄网络博客

相关阅读 >>

bootstrap是响应式的吗

bootstrap简介以及怎样部署安装(介绍)

用npm下载bootstrap后怎么引入

bootstrap什么时候出来的

bootstrap怎么设置背景图片自适应

bootstrap的表单怎么选日期

浅谈bootstrap中的自适应屏幕

bootstrap-table数据刷新后留在当前页

当 position:sticky 遇到 bootstrap 浮动布局时候的踩坑记录

bootstrap怎么设置进度条

更多相关阅读请进入《bootstrap》频道 >>




打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...