辉哥写的ajax装载table

来源:互联网 发布:龙珠激斗刷龙石软件 编辑:程序博客网 时间:2024/06/03 15:21


openReportWin:function(id){//打开报告窗口
  $('#reportWin').modal('show');
  $.post('<%=path %>/service/rest/office.replyOpinionVerifyLogService/collection/list',{id:id},function(data){
 var trHtml = '';
 for (var i=0; i<data.length; i++) {
  trHtml += '<tr>';
  trHtml += '<td>'+data[i].userName+'</td>';
  trHtml += '<td>'+data[i].verifyTime+'</td>';
  trHtml += '<td>'+data[i].content+'</td>';
  trHtml += '</tr>';
 } 
 $('#reportWin .modal-body table tbody').html(trHtml);
});

<!-- 信访件报告窗口start -->
<div id="reportWin" class="modal hide fade" style = "width:900px;left: 40%;" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" data-backdrop="static" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true" title="关闭">×</button>
<h3 id="myModalLabel">审核详情</h3>
</div>
 <div class="modal-body">
  <table class="table" width="100%" layoutH="136">
 <thead>
 <tr>
  <th width="15%">审核人</th>
  <th width="15%">审核时间</th>
  <th>审核不通过原因</th>
 </tr>
 </thead>
 <tbody>
 </tbody>
 </table>
 </div>
 <div class="modal-footer">
  <input type="button" class="btn" value="关闭" data-dismiss="modal" aria-hidden="true"/>
 </div>
</div>
<!-- 信访件报告窗口end -->

0 0
原创粉丝点击