# zeroGrid **Repository Path**: cylansad/zeroGrid ## Basic Information - **Project Name**: zeroGrid - **Description**: No description available - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2016-08-25 - **Last Updated**: 2020-12-18 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #zeroGrid ajax表格组件,支持后台分页、前台分页。 ##### 1. 引用 ```javascript ``` ##### 2. html ```html
``` ##### 3. js调用 ```javascript var _zeroGrid = new zeroGrid({ container: '#contentDiv', url: 'http://localhost:3001/datas', radioboxProperty: 'id', columns: [ { display: '代码', property: 'id', sort: 'id', width: '20%' }, { display: '名称', property: 'name', sort: 'name', width: '20%' }, { display: '操作', view: '设置' }] }); _zeroGrid.render(); ```