这其中用到一个jquery的插件table2excel
使用方法也很简单:
1 。 包含必要的文件
2。 创建导出按钮
Export
3。 给导出按钮添加事件
$(".table2excel").table2excel({ exclude: ".noExl", // 不想导出的行加上class='noExl'即可 name: "Excel Document Name", // excel文档名 filename: "myFileName" // excel文件名});
完整的看下DEMO
jQuery Boilerplate This shouldn't get exported This shouldn't get exported either This Should get exported as a header This should too data1a data1b data2a data2b This footer spans 2 cells This shouldn't get exported This shouldn't get exported either This Should get exported as a header This should too data1a data1b data2a data2b This footer spans 2 cells $(function() { $(".table2excel").table2excel({ exclude: ".noExl", name: "Excel Document Name", filename: "myFileName" }); });
查看更多关于html页面里table导出为excel_html/css_WEB-ITnose的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://haodehen.cn/did113599