Bootstrap 4 表單案例
1. 普通輸入框
<div class="form-group row">
<label for="studentId" class="col-sm-2 col-form-label">學號</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="studentId" placeholder="學號">
</div>
</div>
2. 單選按鈕
<fieldset class="form-group">
<div class="row">
<legend class="col-form-label col-sm-2 pt-0">性別</legend>
<div class="col-sm-10">
<div class="form-check">
<input class="form-check-input" type="radio" name="gridRadios" id="male"
value="male" checked>
<label class="form-check-label" for="gridRadios1">
男
</label>
</div>
<div class="form-check">
<input class="form-check-input" type="radio" name="gridRadios" id="female"
value="female">
<label class="form-check-label" for="gridRadios2">
女
</label>
</div>
</div>
</div>
</fieldset>
表單組
https://getbootstrap.net/docs/components/forms/#form-groups
水平排列
3. 日期選擇
Tempus Dominus,一款 Bootstrap 4 的時間選擇器
官網:https://getdatepicker.com/5-4/Usage/
簡單用法可以參考部落格:https://blog.csdn.net/qq_39291919/article/details/111659094
<div class="form-group row">
<label for="inputEmail3" class="col-sm-2 col-form-label">Email</label>
<div class="col-sm-10">
<div class="form-group">
<div class="input-group date" id="datetimepicker1" data-target-input="nearest">
<input data-provide="datepicker" type="text"
class="form-control datetimepicker-input" data-target="#datetimepicker1"/>
<div class="input-group-append" data-target="#datetimepicker1"
data-toggle="datetimepicker">
<div class="input-group-text"><i class="fa fa-calendar"></i></div>
</div>
</div>
</div>
</div>
<script type="text/javascript">
$(function () {
$('#datetimepicker1').datetimepicker();
});
</script>
</div>
相關文章
- 初學 Bootstrap 表單boot
- bootstrap表單驗證boot
- [開發教程]第15講:Bootstrap表單boot
- Bootstrap select2 ,table, 清空表單formbootORM
- Bootstrap一個小案例boot
- 淺談bootstrap表單驗證外掛BootstrapValidatorboot
- [開發教程]第20講:Bootstrap表單的排版boot
- Bootstrap4 教程boot
- 基於Bootstrap的Material Design風格表單外掛bootMaterial Design
- 基於Bootstrap的強大jQuery表單驗證外掛bootjQuery
- Bootstrap4 正式釋出boot
- bootstrap4註冊頁面boot
- JS 基礎篇(策略模式-表單驗證案例)JS模式
- HTML20_HTML表單標籤4HTML
- 第九課 表單及表單控制元件 html5學習4控制元件HTML
- Laravel 5.6 Bootstrap 4.0 單人部落格Laravelboot
- bootStrap4 提示框(tooltip)的使用boot
- bootstrap4登入註冊頁面boot
- antd4表單手機號驗證
- VeeValidate在vue專案裡表單校驗應用案例Vue
- ElasticSearch啟動報錯 ERROR: [4] bootstrap checks failedElasticsearchErrorbootAI
- Bootstrap-table 合併相同單元格boot
- [開發案例]最近用ThinkPHP+bootstrap3寫的後臺PHPboot
- Oracle優化案例-單表分頁語句的優化(八)Oracle優化
- SQL優化案例-單表分頁語句的優化(八)SQL優化
- TheAdmin v1.0 – Responsive Bootstrap 4 Admin, Dashboard & WebApp TemplatebootWebAPP
- Bootstrap 4 實現導航欄右側對齊boot
- storm簡單案例ORM
- httprunner4.x學習01-安裝和簡單使用案例HTTP
- 好用漂亮的Android 表格框架4(自動生成表單)Android框架
- Bootstrap++:bootstrap-select 使用boot
- [開發教程]第4講:在網頁中使用 Bootstrap網頁boot
- Bootstrap4動態模態視窗jquery外掛bootjQuery
- 《Bootstrap 4 Web設計與開發實戰》簡介bootWeb
- 如何使用 Bootstrap class 向按鈕新增下拉選單boot
- [開發教程] 第17講:Bootstrap單選按鈕boot
- [開發教程]第24講:Bootstrap導航選單boot
- bootstrap 選單導航選單nav li滑鼠移入hover下拉顯示boot