<html>
<head>
<link rel="stylesheet" href="https://www.layuicdn.com/layui-v2.5.4/css/layui.css" media="all">
<script src="https://www.layuicdn.com/layui-v2.5.4/layui.js"></script>
</head>
<body>
<table id="demo" lay-filter="test"></table>
<script> layui.use('table', function(){ var table = layui.table; table.render({ elem: '#demo' ,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>