在一个table中同时显示两个list的内容(转)

<c:forEach items="${tempList}" var="temp" varStatus="loop"> 
                <tr>
                 <td>${temp.id}</td>
                 <td>${temp.zdzName}</td>
                 <td>${temp.ztempString}</td>
                 <td>${rainList[loop.count-1].hourrf}</td>
                 <td><fmt:formatDate value="${temp.zdzdatetime}" pattern="yyyy-MM-dd     HH:mm:ss"/> </td>
                </tr>
</c:forEach>

在一个table中同时显示两个list的内容,找了几天终于找到解决办法了,这里的tempList和rainList是从后台传递过来的list集合,网上有人说把两个list分开遍历,但是并不方便,同时也不符合我的要求。转自http://blog.csdn.net/stone1116/article/details/7370893

时间: 2024-10-08 22:14:56

在一个table中同时显示两个list的内容(转)的相关文章

在一个TextView中字体显示不同颜色

要想使得TextView字体显示不同颜色,可以使用好几个TextView组合使用,还可以通过下面的方式在在一个TextView中字体显示不同颜色 直接上代码: search_intruction = (TextView) findViewById(R.id.search_intruction); search_intr = this.getString(R.string.search_intruction); SpannableStringBuilder style = new Spannabl

在一个table中动态添加一行或删除一行

<table id="selected_user_table" width="100%" > <thead> <tr><th class="center" colspan="2"  style="background-color:#F2F2F2;height:20px;">已选择</th></tr> </thead> <

angular如何在一个网页中同时启动两个app?

AngularJS深入 这个系列真不错,是我想学的深入内容. http://syaning.com/2015/07/16/dive-into-angular-1/ 一般情况下,一个页面中只有一个应用,但是一个页面上多个应用也是可以共存的.通过上面对源码的分析,可以知道,只有第一个应用会自动启动,因此其余的应用需要手动来启动,例如: <div id="app1" ng-app="MyModule1"> <div ng-controller="

在一个数组中是否存在两个数A、B的和为M

#include <iostream>#include <algorithm>//#include <vector>using namespace std; int main () { int myints[] = {32,71,12,45,26,67,53,68}; int l=sizeof(myints)/sizeof(myints[0]);//数组长度 int N=100; sort (myints, myints+l); int myints2 [8]; for

table 中,如何使得单元格的内容不换行,单元格不被撑开

有时候我们需要列不换行,而且根据列自动适应那么我们可以用一下代码来实现. .dataTable { width: 100%; border: none; border-collapse: collapse; border-spacing: 0px !important; display: table; table-layout:fixed; } .dataTable td(word-break: break-all; word-wrap:break-word;)

在页面中正常显示包含html标记的内容--django

{% autoescape off %}     #关闭整段代码的自动转义 {{ htmlContent }} {% endautoescape %}

table中绝对定位元素相对td定位失效解决方案

开门见山! 问题:在一个table中,我需要在td里面绝对定位一个div, 写法:td{position:relative;} div{position:absolute;} OK,就这么简单,思路也没什么问题,并且在chrome中结果完美. BUT!!! IE(此处只测了一下IE,或许别的浏览器也不行,自行测试),坑比的IE来了, 失效了,定位失败,没有预期的效果. 那么在我的项目中用到的解决方案是: 不怕麻烦的在这个absolute定位的div外层包裹一个relative定位的div,如果想

OpenCV show two cameras 同时显示两个摄像头

用OpenCV同时显示两个摄像头的内容的代码如下: #include <iostream> #include <stdio.h> #include <tchar.h> #include <cv.h> #include <cvaux.h> #include <highgui.h> using namespace std; int _tmain(int argc, _TCHAR* argv[]) { CvCapture* cam0 = c

union联合查询将两个表的查询结果在一个表中显示

表格ChannelReward和表格RewardSuppleSettle中都有一下几个字段JSMonth, ChannelNo, RewardSum, RewardItem.要将两个表中RewardSum>0的记录都显示在一个表中,可以使用联合查询 select * from(SELECT     JSMonth, ChannelNo, RewardSum, RewardItem, '1' AS ObjectTypeFROM         dbo.ChannelRewardWHERE