easyui datagrid 加载php的数组

来源:互联网 发布:炒股模拟软件下载 编辑:程序博客网 时间:2024/06/05 21:08
<script type="text/javascript">$('#tt').datagrid({      url:null,      border:false,    fit:true,    fitColumns:true,    pagination:true,      pageSize:20,      pageNumber:1,      rownumbers:true,    singleSelect:false,}); var data = <?php echo json_encode($data);?>;$('#tt').datagrid('loadData',data);</script><table id="tt"><thead>     <tr>          <th data-options="field:'Time',width:20">时间</th>          <th data-options="field:'status',width:10">操作</th>          <th data-options="field:'contents',width:60">内容</th>     </tr></thead></table>

0 0
原创粉丝点击