前端导出table表格

使用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

posted on 2019-02-21 09:56  Leegj  阅读(1005)  评论(0编辑  收藏  举报