这是我们项目前台的一部分代码:
<table>
<thead>
<tr>
<th class="subitem">进度指标项目</th>
<th style="display: none;">单位</th>
<th class="startvalue">标杆值(元/KW)</th>
<th >开始时间</th>
<th >结束时间</th>
<th class="compvalue">上报值(元/KW)</th>
<th>备注</th>
</tr>
</thead>
<tbody smallclass="{smallclass_code}">
<tr audit="{stateno}">
<td>{itemname} </td>
<td style="display: none;">{itemunit} </td>
<td>{compare_value} </td>
<td style="display: none;">{begin_sche} </td>
<td style="display: none;">{end_sche} </td>
<td editable="1" num="1">{itemvalue} </td>
<td editable="1">{remark} </td>
<td style="display: none;">{itemsn} </td>
</tr>
</tbody>
</table>
运行后的效果如图
因为我们平时都是用gridView进行绑定的,而这里后台没见数据访问代码而可以在页面加载出这些信息,且页面显示后查看源码仍然为上面代码。
渴望高手指教!谢谢!