首页 > 技术文章 > 前端导出table表格

leegj 2019-02-21 09:56 原文

使用table2excel.js 框架可以快速导出table表格

<script src="js/jquery.table2excel.js"></script>
            <script>
                $(function() {
                    var name="账户营业额"
                    $("#btn").click(function(){
                        $("#record").table2excel({
                            exclude: ".noExl",
                            name: "Excel Document Name",
                            filename: name,
                            exclude_img: true,
                            exclude_links: true,
                            exclude_inputs: true
                        });
                    });
                    
                });
            </script>


 下载地址:https://files.cnblogs.com/files/leegj/jquery.table2excel.zip

推荐阅读