JAVA学习记录(22)数据表格
- table模块快速使用
- layui.use('table', function(){
- var table = layui.table;
- //第一个实例
- table.render({
- elem: '#demo'
- ,height: 312
- ,url: '../../demo/table/user/-page=1&limit=30.js' //数据接口
- ,page: true //开启分页
- ,cols: [[ //表头
- {field: 'id', title: 'ID', width:80, sort: true, fixed: 'left'}
- ,{field: 'username', title: '用户名', width:80}
- ,{field: 'sex', title: '性别', width:80, sort: true}
- ,{field: 'city', title: '城市', width:80}
- ,{field: 'sign', title: '签名', width: 177}
- ,{field: 'experience', title: '积分', width: 80, sort: true}
- ,{field: 'score', title: '评分', width: 80, sort: true}
- ,{field: 'classify', title: '职业', width: 80}
- ,{field: 'wealth', title: '财富', width: 135, sort: true}
- ]]
- });
- });
- ............................................................................................................
| 昵称 | | 积分 | | 签名 |
| 贤心1 | | 66 | | 人生就像是一场修行a |
| 贤心2 | | 88 | | 人生就像是一场修行b |
| 贤心3 | | 33 | | 人生就像是一场修行c |