代码
提交代码
<html> <head> <link rel="stylesheet" href="https://www.layuicdn.com/layui-v2.5.4/css/layui.css" media="all"><!--引用css文件--> <script src="https://www.layuicdn.com/layui-v2.5.4/layui.js"></script><!--引用JavaScript文件--> </head> <body> <table id="demo" lay-filter="test"></table><!--定义表格容器--> <script> layui.use('table', function(){//初始化表格控件 var table = layui.table; table.render({//渲染表格 elem: '#demo'//表格容器的ID ,height: 312//生成的表格的高度 ,url: '/demo/table/user/' //数据接口 ,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} ]] }); }); </script> </body> </html>
运行结果