分享Bootstrap簡單表格、表單、登錄頁面
更新時間:2017年08月04日 14:33:39 作者:朝花夕拾y
本文給大家分享Bootstrap簡單表格、表單、登錄頁面的實例代碼,非常不錯,具有參考借鑒價值,需要的的朋友參考下吧
1.表格
<!doctype html> <html> <head> <meta charset="utf-8"> <title>表格</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link href="css/bootstrap.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="stylesheet"> <script src="js/jquery-1.9.0.min.js"></script> <script src="js/bootstrap.min.js"></script> </head> <body> <h1>條紋狀表格</h1> <table class="table table-striped"> <thead> <tr> <th>編號</th> <th>姓名</th> <th>性別</th> <th>年齡</th> <th>地址</th> </tr> </thead> <tbody> <tr> <td>1001</td> <td>八戒</td> <td>男</td> <td>1000</td> <td>高老莊</td> </tr> <tr> <td>1002</td> <td>悟空</td> <td>男</td> <td>2000</td> <td>水簾洞</td> </tr> <tr> <td>1001</td> <td>八戒</td> <td>男</td> <td>1000</td> <td>高老莊</td> </tr> <tr> <td>1002</td> <td>悟空</td> <td>男</td> <td>2000</td> <td>水簾洞</td> </tr> <tr> <td>1001</td> <td>八戒</td> <td>男</td> <td>1000</td> <td>高老莊</td> </tr> </tbody> </table> <h1>帶邊框表格 鼠標懸停 緊縮表格</h1> <table class="table table-bordered table-hover table-condensed"> <thead> <tr> <th>編號</th> <th>姓名</th> <th>性別</th> <th>年齡</th> <th>地址</th> </tr> </thead> <tbody> <tr> <td>1001</td> <td>八戒</td> <td>男</td> <td>1000</td> <td>高老莊</td> </tr> <tr> <td>1002</td> <td>悟空</td> <td>男</td> <td>2000</td> <td>水簾洞</td> </tr> <tr> <td>1001</td> <td>八戒</td> <td>男</td> <td>1000</td> <td>高老莊</td> </tr> <tr> <td>1002</td> <td>悟空</td> <td>男</td> <td>2000</td> <td>水簾洞</td> </tr> <tr> <td>1001</td> <td>八戒</td> <td>男</td> <td>1000</td> <td>高老莊</td> </tr> </tbody> </table> <h1>狀態(tài)類</h1> <table class="table "> <thead> <tr class="active"> <th>編號</th> <th>姓名</th> <th>性別</th> <th>年齡</th> <th>地址</th> </tr> </thead> <tbody> <tr class="success"> <td>1001</td> <td>八戒</td> <td>男</td> <td>1000</td> <td>高老莊</td> </tr> <tr class="info"> <td>1002</td> <td>悟空</td> <td>男</td> <td>2000</td> <td>水簾洞</td> </tr> <tr class="warning"> <td>1001</td> <td>八戒</td> <td>男</td> <td>1000</td> <td>高老莊</td> </tr> <tr class="danger"> <td>1002</td> <td>悟空</td> <td>男</td> <td>2000</td> <td>水簾洞</td> </tr> <tr> <td>1001</td> <td>八戒</td> <td>男</td> <td>1000</td> <td>高老莊</td> </tr> </tbody> </table> </body> </html>
2.表單
<!doctype html> <html> <head> <meta charset="utf-8"> <title>表單</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link href="css/bootstrap.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="stylesheet"> <script src="js/jquery-1.9.0.min.js"></script> <script src="js/bootstrap.min.js"></script> </head> <body> <div class="container"> <input type="text" name="" class=" form-control" placeholder="請輸入"> <div class="form-group has-success has-feedback "> <label class="control-label">姓名:</label> <input type="text" name="" class=" form-control input-lg " placeholder="input-lg"> <span class="glyphicon glyphicon-ok form-control-feedback"></span> </div> <div class="form-group has-success has-feedback "> <label class="control-label">姓名:</label> <input type="text" name="" class=" form-control input-sm " placeholder="input-sm"> <span class="glyphicon glyphicon-ok form-control-feedback"></span> </div> <hr/> <h3>文本域</h3> <textarea class="form-control" rows="5" ></textarea> <h3>多選和單選框</h3> 多選:<br/> <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> 單選:<br/> <div class="radio"> <label> <input type="radio" name="sex" value="保密"/>保密 </label> </div> <div class="radio"> <label> <input type="radio" name="sex" value="男"/>男 </label> </div> <div class="radio"> <label> <input type="radio" name="sex" value="女"/>女 </label> </div> <br/> 一行顯示:<br/> 多選:<br/> <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> 單選:<br/> <div class="radio-inline"> <label> <input type="radio" name="sex" value="保密"/>保密 </label> </div> <div class="radio-inline"> <label> <input type="radio" name="sex" value="男"/>男 </label> </div> <div class="radio-inline"> <label> <input type="radio" name="sex" value="女"/>女 </label> </div> 下拉列表: <select class="form-control"> <option>請選擇</option> <option>技術部</option> <option>研發(fā)部</option> <option>后勤部</option> </select> </div> </body> </html>
登錄1
<!doctype html> <html> <head> <meta charset="utf-8"> <title>登錄</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link href="css/bootstrap.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="stylesheet"> <script src="js/jQuery-1.9.0.min.js"></script> <script src="js/bootstrap.min.js"></script> </head> <body> <div class="Container"> <div class="row"> <div class="col-md-4 col-md-offset-4"> <h1 class="page-header">用戶登錄</h1> <form role="form"> <div class="form-group"> <label for="userId">用戶名:</label> <input type="text" class="form-control" placeholder="請輸入賬號" id="userId" name="userId"> </div> <div class="form-group"> <label for="password">密 碼:</label> <input type="password" class="form-control" placeholder="請輸入密碼" id="password" name="password"> </div> <div class="checkbox"> <label> <input type="checkbox"/>記住密碼 </label> <br/> <input type="submit" value="登錄" class="btn"/> </div> </form> </div> </div> </div> </body> </html>
<!doctype html> <html> <head> <meta charset="utf-8"> <title>登錄</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link href="css/bootstrap.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="stylesheet"> <script src="js/jquery-1.9.0.min.js"></script> <script src="js/bootstrap.min.js"></script> </head> <body> <div class="container"> <h1 class="page-header">用戶登錄</h1> <form class="form-inline" role="form"> <div class="form-group"> <div class="input-group" > <div class="input-group-addon">@</div> <input type="text" class="form-control" placeholder="請輸入賬號" id="userId" name="userId"> </div> </div> <div class="form-group"> <label for="password" class="sr-only">密 碼:</label> <input type="password" class="form-control" placeholder="請輸入密碼" id="password" name="password"> </div> <div class="checkbox"> <label> <input type="checkbox"/>記住密碼 </label> <input type="submit" value="登錄" class="btn"/> </div> </form> </div> </body> </html>
<!doctype html> <html> <head> <meta charset="utf-8"> <title>登錄</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link href="css/bootstrap.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="stylesheet"> <script src="js/jquery-1.9.0.min.js"></script> <script src="js/bootstrap.min.js"></script> </head> <body> <div class=" container"> <div class="row"> <div class="col-md-6"> <h2>用戶登錄</h2> <form class="form-horizontal" role="form"> <div class="form-group has-success "> <label class="col-md-3 control-label" for="userId">賬號:</label> <div class="col-md-6"> <input type="text" class="form-control" placeholder="請輸入賬號" id="userId" name="userId"> </div> <span class="help-block">A block of help text that breaks onto a new line and may extend beyond one line.</span> </div> <div class="form-group has-error"> <label class="col-md-3 control-label" for="password">密碼:</label> <div class="col-md-6"> <input type="password" class="form-control" placeholder="請輸入密碼" id="password" name="password"> </div> </div> <div class="form-group"> <div class="col-md-4 col-md-offset-3"> <input type="submit" value="登錄" class="btn"/> <input type="reset" value="重置" class="btn"/> </div> </div> </form> </div> </div> </div> </body> </html>
<!doctype html> <html> <head> <meta charset="utf-8"> <title>登錄</title> <meta name="viewport" content="width=device-width, initial-scale=1"> <link href="css/bootstrap.css" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="stylesheet"> <script src="js/jquery-1.9.0.min.js"></script> <script src="js/bootstrap.min.js"></script> </head> <body> <div class=" container"> <div class="row"> <div class="col-md-6"> <h2>用戶登錄</h2> <form class="form-horizontal" role="form"> <div class="form-group"> <label class="col-md-3 control-label" for="userId">賬號:</label> <div class="col-md-6"> <p class=" form-control-static">admin123456</p> </div> </div> <div class="form-group"> <label class="col-md-3 control-label" for="password">密碼:</label> <div class="col-md-6"> <p class="form-control-static">123456</p> </div> </div> </form> </div> </div> </div> </body> </html>
總結
以上所述是小編給大家介紹的分享Bootstrap簡單表格、表單、登錄頁面,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對腳本之家網站的支持!
您可能感興趣的文章:
- Bootstrap實現(xiàn)登錄校驗表單(帶驗證碼)
- 使用BootStrap實現(xiàn)用戶登錄界面UI
- jfinal與bootstrap的登錄跳轉實戰(zhàn)演習
- php bootstrap實現(xiàn)簡單登錄
- Bootstrap彈出帶合法性檢查的登錄框實例代碼【推薦】
- bootstrap flask登錄頁面編寫實例
- PHP實現(xiàn)登錄注冊之BootStrap表單功能
- 基于Bootstrap實現(xiàn)下拉菜單項和表單導航條(兩個菜單項,一個下拉菜單和登錄表單導航條)
- Bootstrap中文本框的寬度變窄并且加入一副驗證碼圖片的實現(xiàn)方法
- Bootstrap實現(xiàn)前端登錄頁面帶驗證碼功能完整示例
相關文章
js 函數(shù)的執(zhí)行環(huán)境和作用域鏈的深入解析
在js中對象的外在表現(xiàn)形式為函數(shù)。2009-11-11javascript發(fā)送短信驗證碼實現(xiàn)代碼
我們在注冊賬號,或者是參加活動時,都會向手機發(fā)送收短信驗證碼,短信驗證碼到底是如何實現(xiàn)的,本文為大家揭曉,并為大家分項1javascript發(fā)送短信驗證碼實現(xiàn)代碼,感興趣的小伙伴們可以參考一下2015-11-11uniapp使用uni.chooseLocation()打開地圖選擇位置詳解
這篇文章主要給大家介紹了關于uniapp使用uni.chooseLocation()打開地圖選擇位置的相關資料,因為最近在項目中遇到一個要用戶授權位置且可以用戶自己選擇位置的功能,需要的朋友可以參考下2023-06-06