日期:2014-05-16 浏览次数:20365 次
<table width="100%" id="tableClass" border="0" cellspacing="1" cellpadding="0" class="shr_table"> <thead> <tr> <th nowrap="nowrap" width="16%"> 报警 </th> <th width="8%" nowrap="nowrap"> 详情 </th> </tr> </thead> <tbody> <!-- 表格内容 start --> <c:if test="${not empty list}" var="haveData"> <c:forEach items="${list}" var="alarmrecord" varStatus="status"> <tr> <td nowrap="nowrap" align="center"> ${alarmrecord.alarmd} </td> <td nowrap="nowrap" align="center"> ${alarmrecord.alarmdetail} </td> </tr> </c:forEach> </c:if> </tbody> </table>