table.js 通过数组直接生成table表格的js插件


table.js 通过数组直接生成table表格的js插件

第一步引入bfwone

第二步执行插件代码

示例如下

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>BFW NEW PAGE</title>
    <script id="bfwone" data="dep=jquery.17&err=0" type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/bfwone.js"></script>
    <script type="text/javascript">
        bready(function() {

            use(["Table"], function() {
                Table().init({
                    id: 'table',
                    header: ['id', '姓名', '年龄'],
                    data: [
                        [1, '小王', 22],
                        [2, '小李', 24],
                        [3, '小郑', 19],
                        [4, '小郑', 19],
                        [5, '小郑', 19]
                    ]
                });


            });
        });
    </script>
    <style>
        table {
            border: 1px solid #555555;
            margin: 1px;
            border-collapse: collapse;
        }
        table td,table th {
            border: 1px solid #555555;
        }
        textarea {
            width: 800px;
            height: 300px;
            padding: 20px;
            outline: none
        }
    </style>
</head>
<body>
    <div id="table">

    </div>
</body>
</html>


立即下载table.js查看所有js插件

网友评论0

程序员在线工具箱