HTML:
<table id="dg"></table> 或者 <div id="dg"></div>
JS:
$('#dg').datagrid({
url: '/AdminNewList/GetList',
method: 'post',
rownumbers: true,
columns: [[
{ field: 'ck', checkbox: true },
{ field: 'title', title: '标题', 200, align: 'center' },
{ field: 'author', title: '作者', 100, align: 'center' },
{ field: 'subDateTime', title: '时间', 150, align: 'center' },
{ field: 'msg', title: '详细', 400, align: 'center' },
{ field: 'delete', title: '删除', 100, align: 'center' },
{ field: 'editor', title: '修改', 100, align: 'center' }
]]
});
注:后台GetList方法,返回的是json字符串