码迷,mamicode.com
首页 > 其他好文 > 详细

table 导出简单的excel

时间:2021-04-05 11:50:59      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:创建   str   utf-8   pre   简单的   中文乱码   exp   arc   解决   

注意table 标签的id

  test0() {
      let exportFileContent = document.getElementById(‘mtable‘).outerHTML;
      let blob = new Blob([exportFileContent], { type: ‘text/plain;charset=utf-8‘ }); // 解决中文乱码问题
      blob = new Blob([String.fromCharCode(0xFEFF), blob], { type: blob.type });
      // 设置链接
      let link = window.URL.createObjectURL(blob);
      let a = document.createElement(‘a‘); // 创建a标签
      a.download = ‘楼层参评设定.xls‘; // 设置被下载的超链接目标(文件名)
      a.href = link; // 设置a标签的链接
      document.body.appendChild(a); // a标签添加到页面
      a.click(); // 设置a标签触发单击事件
      document.body.removeChild(a); // 移除a标签
    },

  

table 导出简单的excel

标签:创建   str   utf-8   pre   简单的   中文乱码   exp   arc   解决   

原文地址:https://www.cnblogs.com/daifuchao/p/14611008.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!