js导出table标签为excel
-
添加依赖
html底部添加依赖
<script src="/jquery-table2excel/dist/jquery.table2excel.min.js "> </script>
-
js使用
调用以下方法即可,其中.table 为table标签的class
//导出 function exportData() { $(".table").table2excel({ // 不被导出的表格行的CSS class类 exclude: ".noExl", // 导出的Excel文档的名称 name: "fund-" + new Date().getTime(), // Excel文件的名称 filename: "fund-" + new Date().getTime() + ".xls", bootstrap: true, preserveColors: true // set to true if you want background colors and font //colors preserved }); }
网友评论