jquery使用jxl插件导出excel示例_jquery
程序员文章站
2022-04-29 09:42:00
...
复制代码 代码如下:
function formattable(tableHtml, sheetName) {
var template = '
var ctx = {
worksheet : name,
table : tableHtml
};
var downloadLink = document.createElement("a");
downloadLink.href = 'data:application/vnd.ms-excel;base64,' + base64(format(
template, ctx));
downloadLink.download = sheetName + ".xls";
document.body.appendChild(downloadLink);
downloadLink.click();
document.body.removeChild(downloadLink);
// window.open('data:application/vnd.ms-excel;base64,'+
// base64(format(template, ctx)));
}
function base64(s) {
return $.base64.btoa(unescape(encodeURIComponent(s)));
}
var format = function(s, c) {
return s.replace(/{(\w+)}/g, function(m, p) {
return c[p];
});
}
上一篇: composerlock文件的作用
推荐阅读
-
jQuery图片切换插件jquery.cycle.js使用示例
-
jquery+php实现导出datatables插件数据到excel的方法
-
使用JavaScript / JQuery导出 html table 数据至 Excel 兼容IE/Chrome/Firefox
-
jquery使用jxl插件导出excel示例
-
jQuery的ajax传参巧用JSON使用示例(附Json插件)
-
jQuery插件simplePagination的使用方法示例
-
jQuery使用zTree插件实现可拖拽的树示例
-
jQuery表格插件ParamQuery简单使用方法示例
-
使用tableExport.jquery.plugin导出table成excel
-
jQuery插件artDialog.js使用与关闭方法示例