码迷,mamicode.com
首页 > Web开发 > 详细

JS 将表格table导出excel

时间:2017-01-24 17:45:20      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:get   char   element   var   toe   oca   cti   table   html   

function tableToExcel(id)
{
    var tb = document.getElementById(id);
    var html = ‘<html><head><meta charset="UTF-8"></head><body><table>‘ + tb.innerHTML + ‘</table></body></html>‘;
    
    html = window.btoa(unescape(encodeURIComponent(html)));
    
    var uri = ‘data:application/vnd.ms-excel;base64,‘ + html;
    window.location.href = uri;
}

 

JS 将表格table导出excel

标签:get   char   element   var   toe   oca   cti   table   html   

原文地址:http://www.cnblogs.com/zjfree/p/6347461.html

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