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>状态类</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>研发部</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
# 表格表单登录页面
# Bootstrap实现登录校验表单(带验证码)
# 使用BootStrap实现用户登录界面UI
# jfinal与bootstrap的登录跳转实战演习
# php bootstrap实现简单登录
# Bootstrap弹出带合法性检查的登录框实例代码【推荐】
# bootstrap flask登录页面编写实例
# PHP实现登录注册之BootStrap表单功能
# 基于Bootstrap实现下拉菜单项和表单导航条(两个菜单项
# 一个下拉菜单和登录表单导航条)
# Bootstrap中文本框的宽度变窄并且加入一副验证码图片的实现方法
# Bootstrap实现前端登录页面带验证码功能完整示例
# 水帘洞
# 请输入
# 高老庄
# 用户登录
# 表单
# 多选
# 玩游戏
# 小编
# 单选
# 看小说
# 鼠标
# 研发部
# 在此
# 给大家
# 请选择
# 所述
# 给我留言
# 感谢大家
# 疑问请
# 有任何
相关文章:
建站之星代理如何获取技术支持?
如何选择网络建站服务器?高效建站必看指南
建站之星导航配置指南:自助建站与SEO优化全解析
c# 在高并发场景下,委托和接口调用的性能对比
网站建设制作、微信公众号,公明人民医院怎么在网上预约?
php json中文编码为null的解决办法
网站设计制作书签怎么做,怎样将网页添加到书签/主页书签/桌面?
关于BootStrap modal 在IOS9中不能弹出的解决方法(IOS 9 bootstrap modal ios 9 noticework)
网站制作公司排行榜,四大门户网站排名?
如何解决VPS建站LNMP环境配置常见问题?
如何快速建站并高效导出源代码?
Swift中swift中的switch 语句
如何用花生壳三步快速搭建专属网站?
建站之星如何防范黑客攻击与数据泄露?
建站之星安装需要哪些步骤及注意事项?
建站之星代理平台如何选择最佳方案?
免费制作统计图的网站有哪些,如何看待现如今年轻人买房难的情况?
建站之星2.7模板快速切换与批量管理功能操作指南
建站VPS推荐:2025年高性能服务器配置指南
网站制作公司哪里好做,成都网站制作公司哪家做得比较好,更正规?
公司门户网站制作流程,华为官网怎么做?
如何破解联通资金短缺导致的基站建设难题?
专业网站建设制作报价,网页设计制作要考什么证?
,网站推广常用方法?
如何彻底卸载建站之星软件?
企业微网站怎么做,公司网站和公众号有什么区别?
儿童网站界面设计图片,中国少年儿童教育网站-怎么去注册?
专业网站设计制作公司,如何制作一个企业网站,建设网站的基本步骤有哪些?
简易网站制作视频教程,使用记事本编写一个简单的网页html文件?
建站之星好吗?新手能否轻松上手建站?
建站之星图片链接生成指南:自助建站与智能设计教程
网页设计网站制作软件,microsoft office哪个可以创建网页?
齐河建站公司:营销型网站建设与SEO优化双核驱动策略
如何快速搭建高效简练网站?
C#怎么使用委托和事件 C# delegate与event编程方法
C++如何使用std::optional?(处理可选值)
如何通过万网虚拟主机快速搭建网站?
一键网站制作软件,义乌购一件代发流程?
深圳网站制作平台,深圳市做网站好的公司有哪些?
高端企业智能建站程序:SEO优化与响应式模板定制开发
已有域名建站全流程解析:网站搭建步骤与建站工具选择
小说建站VPS选用指南:性能对比、配置优化与建站方案解析
SAX解析器是什么,它与DOM在处理大型XML文件时有何不同?
如何处理“XML格式不正确”错误 常见XML well-formed问题解决方法
大连企业网站制作公司,大连2025企业社保缴费网上缴费流程?
香港网站服务器数量如何影响SEO优化效果?
广州商城建站系统开发成本与周期如何控制?
深圳 网站制作,深圳招聘网站哪个比较好一点啊?
孙琪峥织梦建站教程如何优化数据库安全?
天河区网站制作公司,广州天河区如何办理身份证?需要什么资料有预约的网站吗?
*请认真填写需求信息,我们会在24小时内与您取得联系。