美文网首页
Handsontable helloword

Handsontable helloword

作者: Rinaloving | 来源:发表于2019-08-22 14:30 被阅读0次
<!DOCTYPE html>
<html>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
</head>
<body>
    <!--引入handsontable-->
    <script src="../js/handsontable-7.1.1/dist/handsontable.full.min.js"></script>
    <link href="../js/handsontable-7.1.1/dist/handsontable.full.min.css" rel="stylesheet" media="screen">

    <div id="example">


    </div>

    <script>
        var data = [
            ['','Ford','Tesla','Toyota','Honda'],
            ['2017',10,11,12,13],
            ['2018',20,11,14,13],
            ['2019',30,15,12,13]
        ];

        var container = document.getElementById('example');
        var hot = new Handsontable(container,{
            data:data,
            rowHeaders:true,
            colHeaders:true,
            filters:true,
            dropdownMenu:true,
            licenseKey:'non-commercial-and-evaluation'
        });

    </script>

</body>
</html>
项目结构.png

结果:


handsontable范例.png

相关文章

网友评论

      本文标题:Handsontable helloword

      本文链接:https://www.haomeiwen.com/subject/ypunsctx.html