- <table id="dg" title="用户列表" class="easyui-datagrid" style="width:1000px;height:250px" toolbar="#toolbar">
- </table>
- $(function(){
- $('#dg').datagrid({
- url:"${pageContext.request.contextPath}/OfferServlet",//servlet路径
- columns:[[
- {field:'offerid',title:'商品ID',width:100},
- {field:'offername',title:'商品名称',width:100},
- {field:'offertype',title:'商品类型',width:100},
- {field:'offerdesc',title:'商品描述',width:300},
- {field:'price',title:'商品价格',width:150}
- ]]
- });
- });