问答文章1 问答文章501 问答文章1001 问答文章1501 问答文章2001 问答文章2501 问答文章3001 问答文章3501 问答文章4001 问答文章4501 问答文章5001 问答文章5501 问答文章6001 问答文章6501 问答文章7001 问答文章7501 问答文章8001 问答文章8501 问答文章9001 问答文章9501

bootstrap框架,要动态合并单元格。数据是不固定的。求指教,急用!谢谢!

发布网友 发布时间:2022-05-14 22:20

我来回答

2个回答

懂视网 时间:2022-05-15 02:42

这篇文章主要介绍了Bootstrap实现的表格合并单元格,涉及bootstrap界面布局相关操作技巧,需要的朋友可以参考下

本文实例讲述了Bootstrap实现的表格合并单元格。分享给大家供大家参考,具体如下:

1、问题背景

利用Bootstrap设计表格,并且表格需要合并单元格

2、实现源码

<!DOCTYPE html>
<html>
 <head>
 <meta charset="utf-8">
 <meta http-equiv="X-UA-Compatible" content="IE=edge">
 <meta name="viewport" content="width=device-width, initial-scale=1">
 <meta name="description" content="">
 <meta name="author" content="">
 <title>Bootstrap-表格合并单元格</title>
 <link rel="stylesheet" href="https://cdn.bootcss.com/bootstrap/3.3.5/css/bootstrap.css" rel="external nofollow" />
 <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script>
 <script type="text/javascript" src="https://cdn.bootcss.com/bootstrap/3.3.5/js/bootstrap.js" ></script>
 <style>
 body,html{
 width: 99%;
 height: 98%;
 font-family: "微软雅黑";
 font-size: 14px;
 }
 table{
 width: 100%;
 }
 </style>
 <script>
 </script>
 </head>
 <body>
 <p class="row">
 <p class="col-xs-12">
 <table class="table table-striped">
  <tr>
  <td>
  <label for="stuNo">学号:</label>
  <input type="text" id="stuNo" />
  <p class="btn-group" style="width: 157px; height: 26px;">
  <button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown" style="width: 157px; height: 26px;">
   班级
  </button>
  <ul class="dropdown-menu" role="menu">
   <li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >一班</a></li>
   <li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >二班</a></li>
   <li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >三班</a></li>
   <li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >四班</a></li>
   <li><a href="#" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" rel="external nofollow" >五班</a></li>
  </ul>
  </p>
  <button type="button" class="btn btn-primary">查询</button>
  <button type="button" class="btn">重置</button>
  </td>
  </tr>
 </table>
 </p>
 <p class="col-xs-12">
 <p class="col-xs-2">
  <table class="table table-striped table-bordered">
  <caption>学生表</caption>
  <thead>
  <tr>
  <th>学生</th>
  <th>学号</th>
  </tr>
  </thead>
  <tbody>
  <tr>
  <td>胡思</td>
  <td>2016010101</td>
  </tr>
  <tr>
  <td>赵四</td>
  <td>2016010102</td>
  </tr>
  <tr>
  <td>陈诚</td>
  <td>2016010103</td>
  </tr>
  <tr>
  <td>李磊</td>
  <td>2016010104</td>
  </tr>
  <tr>
  <td>孙杨</td>
  <td>2016010105</td>
  </tr>
  <tr>
  <td>李爽</td>
  <td>2016010106</td>
  </tr>
  </tbody>
  </table>
  <table class="table table-striped table-bordered">
  <caption>学生表</caption>
  <thead>
  <tr>
  <th>学生</th>
  <th>学号</th>
  </tr>
  </thead>
  <tbody>
  <tr>
  <td>胡思</td>
  <td>2016010101</td>
  </tr>
  <tr>
  <td>赵四</td>
  <td>2016010102</td>
  </tr>
  <tr>
  <td>陈诚</td>
  <td>2016010103</td>
  </tr>
  <tr>
  <td>李磊</td>
  <td>2016010104</td>
  </tr>
  <tr>
  <td>游豪</td>
  <td>2016010105</td>
  </tr>
  </tbody>
  </table>
 </p>
 <p class="col-xs-10">
  <table class="table table-striped">
  <tr style="text-align: center;">
  <td>到校</td>
  <td>回家</td>
  <td>距离</td>
  </tr>
  <tr style="text-align: center;">
  <td colspan="2" style="text-align: center;">222</td>
  <td rowspan="2" style="width: 200px;">
  <p class="col-xs-12">
   <table class="table table-striped table-bordered">
   <thead>
   <tr>
   <th>姓名</th>
   <th>学号</th>
   </tr>
   </thead>
   <tbody>
   <tr>
   <td>胡思</td>
   <td>2016010101</td>
   </tr>
   </tbody>
   </table>
  </p>
  </td>
  </tr>
  <tr>
  <td colspan="2" style="text-align: center;">333</td>
  </tr>
  </table>
  <table class="table table-striped">
  <tr style="text-align: center;">
  <td>到校</td>
  <td>回家</td>
  <td>距离</td>
  </tr>
  <tr style="text-align: center;">
  <td colspan="2" style="text-align: center;">222</td>
  <td rowspan="2" style="width: 200px;">
  <p class="col-xs-12">
   <table class="table table-striped table-bordered">
   <thead>
   <tr>
   <th>姓名</th>
   <th>学号</th>
   </tr>
   </thead>
   <tbody>
   <tr>
   <td>胡思</td>
   <td>2016010101</td>
   </tr>
   </tbody>
   </table>
  </p>
  </td>
  </tr>
  <tr>
  <td colspan="2" style="text-align: center;">333</td>
  </tr>
  </table>
  <table class="table table-striped">
  <tr style="text-align: center;">
  <td>到校</td>
  <td>回家</td>
  <td>距离</td>
  </tr>
  <tr style="text-align: center;">
  <td colspan="2" style="text-align: center;">222</td>
  <td rowspan="2" style="width: 200px;">
  <p class="col-xs-12">
   <table class="table table-striped table-bordered">
   <thead>
   <tr>
   <th>姓名</th>
   <th>学号</th>
   </tr>
   </thead>
   <tbody>
   <tr>
   <td>胡思</td>
   <td>2016010101</td>
   </tr>
   </tbody>
   </table>
  </p>
  </td>
  </tr>
  <tr>
  <td colspan="2" style="text-align: center;">333</td>
  </tr>
  </table>
  <table class="table table-striped">
  <tr style="text-align: center;">
  <td>到校</td>
  <td>回家</td>
  <td>距离</td>
  </tr>
  <tr style="text-align: center;">
  <td colspan="2" style="text-align: center;">222</td>
  <td rowspan="2" style="width: 200px;">
  <p class="col-xs-12">
   <table class="table table-striped table-bordered">
   <thead>
   <tr>
   <th>姓名</th>
   <th>学号</th>
   </tr>
   </thead>
   <tbody>
   <tr>
   <td>胡思</td>
   <td>2016010101</td>
   </tr>
   </tbody>
   </table>
  </p>
  </td>
  </tr>
  <tr>
  <td colspan="2" style="text-align: center;">333</td>
  </tr>
  </table>
 </p>
 </p>
 </p>
 </body>
</html>

3、实现结果

上面是我整理给大家的,希望今后会对大家有帮助。

相关文章:

在 Angular中 使用Lodash方法具体该怎么做?

vue-router项目实战(详细教程)

详细解答JS操作剪贴板

热心网友 时间:2022-05-14 23:50

通过jsp在jsp文件中根据数据判断,动态生成表格就行了
声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com
...爱你你是我的罗密欧 , 我愿意变成你的朱丽叶' 谁知 有句歌词是“我爱你你是我的朱丽叶,我愿意变成你的梁山伯”是哪... 为什么打印出来的文档页码和原来的不一样 ...两台电脑用路由器上网一台是W7一台是XP如何实现两台电脑共享文件 win7怎么联另一台电脑win7怎么让网络和另一台电脑共享 w7的系统怎么共享电脑w7系统里面文件怎么共享另一台电脑 共享win7电脑w7系统里面文件怎么共享另一台电脑 翡翠有收藏价值吗,我们玩家如何去投资 价格一两万元的翡翠如何挑选 ppt怎么转换成视频?简单四步法,轻松搞定ppt微课录制 我买了个圣大保罗的拉杆箱,只有两个钥匙孔,但是没有钥匙,怎么设置密码 里莫瓦拉杆箱新的怎么打开,没有钥匙? 迷你世界有村庄吗? 迷你世界中村民长什么样 《迷你世界村庄》怎么玩? 你知道2009年北京自考十月份的考试时间和其他个省的时间是一样的吗,试卷是全国统一的吗? 迷你世界怎么做村民蛋 用84稀释的水能擦凉席吗 竹席泡水后水发黄怎么办? 麻将凉席能放水里泡吗? 梦见睡着凉席顺水漂流? 怎样正确区分水牛皮和黄牛皮? c30混凝土多久能承重? c30混凝土多久能承重 领克03什么时候出国六2.0T 科技小制作小船老打转 制作一艘能够防水的小船科技小制作 这种拉杆箱有没有钥匙的? delsey拉杆箱买的时候没有钥匙怎么回事 纹完美瞳线能画眼线吗 足球运动对身体有什么好处? 足球运动的锻炼价值 电脑有什么录屏软件(录的不卡,随便有下载地址的发一下)最好破解或免费 校园足球推广重心下移到幼儿园,幼儿园推广足球合适吗? 校园足球推广到底难在哪儿? 足球公益的意义是什么? 一个手游,几年前的,第三人称格斗游戏,单机的,画质不错格挡闪避 类似只狼? ipad air2怎么设置全屏 山东省东营市7月19号的天气预报 越南有斯凯奇鞋吗? 山东青岛天气 班会搞网络安全 微信背景图是白色的为什么在群里显示群名称都看不见啊 微信删除好友又加回对方会知道吗 如何加回微信删掉的好友 excel2010里的宏不可用,这是为什么 以爱国为主题的诗歌朗诵,选背景音乐,急求急求 《满江红》朗诵用十面埋伏还是精忠报国做背景音乐效果好? 谁知道,博爱县高一一班 《精忠报国》大合唱 朗诵的满江红背景音乐是什么吗?要快,谢谢了。 形容防疫人员的诗词