x-spreadsheet网页版excel表格编辑器代码

来源:https://www.sucaihuo.com/js/4224.html 2019-02-28 11:07浏览(1974) 收藏

x-spreadsheet是一款原生js制作的网页版excel表格编辑器代码,在线编辑excel表格,功能还是挺全面的。
x-spreadsheet网页版excel表格编辑器代码
分类:其它特效 > table表格 难易:高级
查看演示 下载资源 下载积分: 20 积分
关注公众号,免费赠送安装视频教程、环境和学习视频,后面会不断更新。

js代码

<script>
    function load(){
      x.spreadsheet('#x-spreadsheet-demo')
        .loadData({
          freeze: 'C3',
          styles: [
            {
              bgcolor: '#f4f5f8',
              textwrap: true,
              color: '#900b09',
              border: {
                top: ['thin', '#0366d6'],
                bottom: ['thin', '#0366d6'],
                right: ['thin', '#0366d6'],
                left: ['thin', '#0366d6'],
              },
            },
          ],
          merges: [
            'C3:D4',
          ],
          rows: {
            1: {
              cells: {
                0: { text: 'testingtesttestetst' },
                2: { text: 'testing' },
              },
            },
            2: {
              cells: {
                0: { text: 'render', style: 0 },
                1: { text: 'Hello' },
                2: { text: 'haha', merge: [1, 1] },
              }
            },
            8: {
              cells: {
                8: { text: 'border test', style: 0 },
              }
            }
          },
        }).change((cdata) => console.log(cdata));
    }
</script>
<script type="text/javascript" src="xspreadsheet.js"></script></body>
标签: excel表格编辑
评论0
头像

系统已开启自动识别垃圾评论机制,识别到的自动封号,下载出错或者资源有问题请联系全栈客服QQ 1915635791

1 2