用script渲染出来一张表

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>table模块快速使用</title>
<!--    <link rel="stylesheet" href="./layui/css/layui.css" media="all">-->
    <link rel = "stylesheet" href = "./layui/css/layui.css">
</head>
<body>

<table id="demo" lay-filter="test"></table>

<!--<script src="/layui/layui.js"></script>-->

<script type="text/javascript" src="./layui/layui.js"></script>

<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>

 

 

posted @ 2020-07-25 14:27  bH1pJ  阅读(14)  评论(0编辑  收藏  举报