Bootstrap 表单结构


若要在 Bootstrap 中创建表单,

  • 向父 <form> 元素添加 role form
  • 将标签和控件包装在具有 class .form-group 的 <div> 中。这对于优化间距是必需的。
  • 向所有文本 <input>、<textarea> 和 <select> 元素添加一个 .form-control 类。

您可以尝试运行以下代码来创建一个表单 −

示例

实时演示

<!DOCTYPE html>
<html>
   <head>
      <title>Bootstrap Forms</title>
      <meta name = "viewport" content = "width=device-width, initial-scale = 1">
      <link rel = "stylesheet" href = "https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/css/bootstrap.min.css">
      <script src = "https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
      <script src = "https://stackpath.bootstrapcdn.com/bootstrap/4.1.1/js/bootstrap.min.js"></script>
   </head>
   <body>
      <form role = "form">
         <div class = "form-group">
            <label for = "name">Full Name</label>
            <input type = "text" class = "form-control" id = "name" placeholder = "Enter Full Name">
            <label for = "subject">Subject</label>
            <input type = "text" class = "form-control" id = "name" placeholder = "Add Selected Subject">
         </div>
         <div class = "form-group">
            <label for = "inputfile">File input</label>
            <input type = "file" id = "inputfile">
            <p class = "help-block">Example block-level help text here.</p>
         </div>
         <div class = "checkbox">
            <label><input type = "checkbox"> Notification about our products</label>
         </div>
         <button type = "submit" class = "btn btn-default">Submit</button>
      </form>
   </body>
</html>

更新于: 2020 年 6 月 12 日

429 次浏览

开启你的 职业 生涯

完成课程,获得认证

开始
广告