修改jquery.table2excel.js让他导出Excel支持css样式

news/2024/7/11 1:38:27 标签: jquery, css, mvc

懒得说话,直接上代码:

MVC的cshtml:

@{
    ViewBag.Title = "导出-Excel";
    Layout = "~/Views/Shared/_Layout.cshtml";
}

<script src="~/Scripts/table2excel/jquery.min.js"></script>
<script src="~/Scripts/table2excel/jquery.table2excel.js"></script>
<span style=" font-size:24px; color:red;">正在导出 Excel...请勿关闭此页面,请耐心等待...谢谢...</span>

<div hidden="hidden">
    <table width="200%" border="1" id="table1" style="text-align:center;">
        <thead>
            <tr>
                <th rowspan="2">品牌</th>
                <th rowspan="2">店铺</th>
                <th colspan="3">1-30</th>
                <th colspan="3">30-60</th>
                <th colspan="3">60-90</th>
                <th colspan="3">90-120</th>
                <th colspan="3">120-150</th>    
            </tr>
            <tr>
                <th>数量</th>
                <th>金额</th>
                <th>占比</th>

                <th>数量</th>
                <th>金额</th>
                <th>占比</th>

                <th>数量</th>
                <th>金额</th>
                <th>占比</th>

                <th>数量</th>
                <th>金额</th>
                <th>占比</th>

                <th>数量</th>
                <th>金额</th>
                <th>占比</th>
            </tr>
        </thead>
        <tbody id="tbody">
            @{
                System.Data.DataTable dt = ViewBag.Dt;
                for (int i = 0; i < dt.Rows.Count; i++)
                {
                    <tr>
                        <td>@dt.Rows[i]["品牌"].ToString()</td>                  
                        <td>@dt.Rows[i]["店铺"].ToString()</td>

                        <td>@dt.Rows[i]["数量_30"].ToString()</td>
                        <td>@dt.Rows[i]["金额_30"].ToString()</td>
                        <td>@dt.Rows[i]["占比_30"].ToString()</td>

                        <td>@dt.Rows[i]["数量_60"].ToString()</td>
                        <td>@dt.Rows[i]["金额_60"].ToString()</td>
                        <td>@dt.Rows[i]["占比_60"].ToString()</td>

                        <td>@dt.Rows[i]["数量_90"].ToString()</td>
                        <td>@dt.Rows[i]["金额_90"].ToString()</td>
                        <td>@dt.Rows[i]["占比_90"].ToString()</td>

                        <td>@dt.Rows[i]["数量_120"].ToString()</td>
                        <td>@dt.Rows[i]["金额_120"].ToString()</td>
                        <td>@dt.Rows[i]["占比_120"].ToString()</td>

                        <td>@dt.Rows[i]["数量_150"].ToString()</td>
                        <td>@dt.Rows[i]["金额_150"].ToString()</td>
                        <td>@dt.Rows[i]["占比_150"].ToString()</td>
                        
                    </tr>
                }
            }
        </tbody>
    </table>
</div>

<script>
    $(function () {
        mergeFunc("table1");//合并相同行
        ExportExcel();//导出Excel
        window.close();//关闭当前窗口
    });
    //合并相同行
    function mergeFunc(tableId) {
        var tab = document.getElementById(tableId);
        //maxcol用于设置需要合并的列数
        var maxCol = 1;//只合并第1列
        var val, count, start;
        for (var col = maxCol - 1; col >= 0; col--) {
            //用于存储相同个数
            count = 1;
            val = "";
            for (var i = 0; i < tab.rows.length; i++) {
                if (val == tab.rows[i].cells[col].innerHTML) {
                    count++;
                } else {
                    if (count > 1) {
                        //合并
                        start = i - count;
                        tab.rows[start].cells[col].rowSpan = count;
                        for (var j = start + 1; j < i; j++) { //
                            tab.rows[j].cells[col].style.display = "none";
                            tab.rows[j].removeChild(tab.rows[j].cells[col]);
                        }
                        count = 1;
                    }
                    //赋值,用于循环判断
                    val = tab.rows[i].cells[col].innerHTML;
                }
            }
            if (count > 1) { //合并,最后几行相同的情况下
                start = i - count;
                tab.rows[start].cells[col].rowSpan = count;
                for (var j = start + 1; j < i; j++) {
                    tab.rows[j].removeChild(tab.rows[j].cells[col]);
                }
            }
        }
    }
    //导出excel
    function ExportExcel() {
        $('#table1').table2excel({
            subtotal:2,//合计行所在行号(不包括表头)
            filename: "excel_" + new Date().getTime() + ".xlsx", //文件名称
        });
    }
</script>

jquery.table2excel.js%C2%A0">修改后的 jquery.table2excel.js 

/*  调用方法:
 *   $('#test_table').table2excel({//'#test_table' table的id
 *       subtotal: 1,//可选参数(可删除此行),默认值:0
 *       width:200,//导出excel表格的宽度百分比的值(不含%号),可删除此行(默认100%)
 *       filename: 'excel_' + new Date().getTime() + '.xls', //excel文件名称,扩展名:.xlsx 或者.xls
 *   });
 */
(function ($, window, document, undefined) {
    var pluginName = "table2excel",
        defaults = {
            exclude: ".noExl",
            name: "Table2Excel",
            filename: "table2excel",
            fileext: ".xls",
            exclude_img: true,
            exclude_links: true,
            exclude_inputs: true,
            preserveColors: false,
            subtotal: 0,//"合计"行所在的行号(不包括标题行),0表示没有合计行...
            width: 100,//表格宽度百分比,默认100%
        };
    //插件配置
    function Plugin(element, options) {
        this.element = element;
        this.settings = $.extend({}, defaults, options);
        this._defaults = defaults;
        this._name = pluginName;
        this.init();
    }
    Plugin.prototype = {
        init: function () {
            var e = this;
            var w = getWidth(e.settings);//导出EXCEL表格的宽度,默认100%
            var utf8Heading = "<meta http-equiv=\"content-type\" content=\"application/vnd.ms-excel; charset=UTF-8\">";
            e.template = {
                head: "<html xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:x=\"urn:schemas-microsoft-com:office:excel\" xmlns=\"http://www.w3.org/TR/REC-html40\">" + utf8Heading + "<head><!--[if gte mso 9]><xml><x:ExcelWorkbook><x:ExcelWorksheets>",
                sheet: {
                    head: "<x:ExcelWorksheet><x:Name>",
                    tail: "</x:Name><x:WorksheetOptions><x:DisplayGridlines/></x:WorksheetOptions></x:ExcelWorksheet>"
                },
                mid: "</x:ExcelWorksheets></x:ExcelWorkbook></xml><![endif]--></head><body>",
                table: {
                    head: " <table border='1' style='width:" + w + "%;'>",//<table>的边框&宽度
                    tail: " </table>"
                },
                foot: "</body></html>"
            };
            e.tableRows = [];

            //读取原始表
            var rowNumber = 0;//行号
            $(e.element).each(function (i, o) {
                var tempRows = "";//table的html
                $(o).find("tr").not(e.settings.exclude).each(function (i, p) {
                    //<tr>的样式
                    var trStyles = "";//整行样式
                    //开始创建一行表格
                    if (trStyles) {
                        tempRows += "<tr align='center' style='" + trStyles + "'>";//内容居中:align='center'
                    }
                    else {
                        tempRows += "<tr align='center'>";//内容居中:align='center'
                    }
                    //读取原始<table>的<th>表头行(表头必须是<th>!表头如果是<td>的话则会当做普通数据行处理...)
                    $(p).find("th").not(e.settings.exclude).each(function (i, q) {
                        //<th>的样式:
                        var thStyles = "background-color: cornflowerblue; color:white;";
                        var rc = {
                            rows: $(this).attr("rowspan"),
                            cols: $(this).attr("colspan"),
                            flag: $(q).find(e.settings.exclude)
                        };
                        if (rc.flag.length > 0) {
                            tempRows += "<td> </td>"; //空格!
                        } else {
                            tempRows += "<td";
                            if (rc.rows > 0) {
                                tempRows += " rowspan='" + rc.rows + "' ";//跨行
                            }
                            if (rc.cols > 0) {
                                tempRows += " colspan='" + rc.cols + "' ";//跨列
                            }
                            if (thStyles) {
                                tempRows += " style='" + thStyles + "'";//样式
                            }
                            tempRows += ">" + $(q).html() + "</td>";//内容
                        }
                    });

                    //读取原始<table>的<td>数据行
                    $(p).find("td").not(e.settings.exclude).each(function (i, q) {
                        //<td>的样式
                        var tdStyles = "background-color:yellow;";//合计行的样式
                        var rc = {
                            rows: $(this).attr("rowspan"),
                            cols: $(this).attr("colspan"),
                            flag: $(q).find(e.settings.exclude)
                        };
                        if (rc.flag.length > 0) {
                            tempRows += "<td> </td>"; //空格!                       
                        } else {
                            tempRows += "<td ";
                            if (rc.rows > 0) {
                                tempRows += " rowspan='" + rc.rows + "' ";//跨行
                            }
                            if (rc.cols > 0) {
                                tempRows += " colspan='" + rc.cols + "' ";//跨列
                            }
                            var subtotal = getSubtotal(e.settings);//获取"合计"行所在的行号(不包括标题行)
                            if (rowNumber == subtotal) {//if(当前行行号 == 合计行行号)
                                if (tdStyles) {
                                    tempRows += " style='mso-number-format:\"\@\"; " + tdStyles + "' ";//样式
                                }
                                else {
                                    tempRows += " style='mso-number-format:\"\@\";' ";//纯文本
                                }
                            }
                            else {
                                tempRows += " style='mso-number-format:\"\@\";' ";//纯文本
                            }
                            tempRows += ">" + $(q).html() + "</td>";
                        }
                    });
                    tempRows += "</tr>";//生成一行结束
                    rowNumber++;//行号+1
                });
                // exclude img tags
                if (e.settings.exclude_img) {
                    tempRows = exclude_img(tempRows);
                }
                // exclude link tags
                if (e.settings.exclude_links) {
                    tempRows = exclude_links(tempRows);
                }
                // exclude input tags
                if (e.settings.exclude_inputs) {
                    tempRows = exclude_inputs(tempRows);
                }
                e.tableRows.push(tempRows);
            });
            e.tableToExcel(e.tableRows, e.settings.name, e.settings.sheetName);
        },
        tableToExcel: function (table, name, sheetName) {
            var e = this, fullTemplate = "", i, link, a;
            e.format = function (s, c) {
                return s.replace(/{(\w+)}/g, function (m, p) {
                    return c[p];
                });
            };
            sheetName = typeof sheetName === "undefined" ? "Sheet" : sheetName;
            e.ctx = {
                worksheet: name || "Worksheet",
                table: table,
                sheetName: sheetName
            };
            fullTemplate = e.template.head;
            if ($.isArray(table)) {
                Object.keys(table).forEach(function (i) {
                    //fullTemplate += e.template.sheet.head + "{worksheet" + i + "}" + e.template.sheet.tail;
                    fullTemplate += e.template.sheet.head + sheetName + i + e.template.sheet.tail;
                });
            }
            fullTemplate += e.template.mid;
            if ($.isArray(table)) {
                Object.keys(table).forEach(function (i) {
                    fullTemplate += e.template.table.head + "{table" + i + "}" + e.template.table.tail;
                });
            }
            fullTemplate += e.template.foot;
            for (i in table) {
                e.ctx["table" + i] = table[i];
            }
            delete e.ctx.table;
            var isIE = navigator.appVersion.indexOf("MSIE 10") !== -1 || (navigator.userAgent.indexOf("Trident") !== -1 && navigator.userAgent.indexOf("rv:11") !== -1); // this works with IE10 and IE11 both :)
            //if (typeof msie !== "undefined" && msie > 0 || !!navigator.userAgent.match(/Trident.*rv\:11\./))      // this works ONLY with IE 11!!!
            if (isIE) {
                if (typeof Blob !== "undefined") {
                    //use blobs if we can
                    fullTemplate = e.format(fullTemplate, e.ctx); // with this, works with IE
                    fullTemplate = [fullTemplate];
                    //convert to array
                    var blob1 = new Blob(fullTemplate, { type: "text/html" });
                    window.navigator.msSaveBlob(blob1, getFileName(e.settings));
                } else {
                    //otherwise use the iframe and save
                    //requires a blank iframe on page called txtArea1
                    txtArea1.document.open("text/html", "replace");
                    txtArea1.document.write(e.format(fullTemplate, e.ctx));
                    txtArea1.document.close();
                    txtArea1.focus();
                    sa = txtArea1.document.execCommand("SaveAs", true, getFileName(e.settings));
                }

            } else {
                var blob = new Blob([e.format(fullTemplate, e.ctx)], { type: "application/vnd.ms-excel" });
                window.URL = window.URL || window.webkitURL;
                link = window.URL.createObjectURL(blob);
                a = document.createElement("a");
                a.download = getFileName(e.settings);
                a.href = link;
                document.body.appendChild(a);
                a.click();
                document.body.removeChild(a);
            }
            return true;
        }
    };
    //获取excel文件名
    function getFileName(settings) {
        return (settings.filename ? settings.filename : "table2excel");
    }
    //获取"合计"行所在的行号(不包括标题行)
    function getSubtotal(settings) {
        return (settings.subtotal ? settings.subtotal : 0);//默认值0
    }
    //导出Excel的表格宽度百分比的值(不含%号),默认100%
    function getWidth(settings) {
        return (settings.width ? settings.width : 100);
    }
    // Removes all img tags
    function exclude_img(string) {
        var _patt = /(\s+alt\s*=\s*"([^"]*)"|\s+alt\s*=\s*'([^']*)')/i;
        return string.replace(/<img[^>]*>/gi, function myFunction(x) {
            var res = _patt.exec(x);
            if (res !== null && res.length >= 2) {
                return res[2];
            } else {
                return "";
            }
        });
    }
    // Removes all link tags
    function exclude_links(string) {
        return string.replace(/<a[^>]*>|<\/a>/gi, "");
    }
    // Removes input params
    function exclude_inputs(string) {
        var _patt = /(\s+value\s*=\s*"([^"]*)"|\s+value\s*=\s*'([^']*)')/i;
        return string.replace(/<input[^>]*>|<\/input>/gi, function myFunction(x) {
            var res = _patt.exec(x);
            if (res !== null && res.length >= 2) {
                return res[2];
            } else {
                return "";
            }
        });
    }
    $.fn[pluginName] = function (options) {
        var e = this;
        e.each(function () {
            if (!$.data(e, "plugin_" + pluginName)) {
                $.data(e, "plugin_" + pluginName, new Plugin(this, options));
            }
        });
        // chain jQuery functions
        return e;
    };
})(jQuery, window, document);

网页预览: 

 导出Excel预览:


说一下 jquery.table2excel.js 修改的地方:

①给表格加上黑色边框

head: " <table>",

改为:

head: " <table border='1' >",

②让单元格里的内容居中显示

tempRows += "<tr style='" + additionalStyles + "'>";

改为:

tempRows += "<tr align='center' style='" + additionalStyles + "'>";

③添加“表头”和“表格数据”的样式

$(p).find("td,th").not(e.settings.exclude).each(function (i, q) {...

改为:

$(p).find("th").not(e.settings.exclude).each(function (i, q) {...

$(p).find("td").not(e.settings.exclude).each(function (i, q) {...

将一块代码复制成两块代码,一个负责处理<th>表头,一个负责处理<td>表格数据,大致如下:

                    $(p).find("th").not(e.settings.exclude).each(function (i, q) {
                        //<th>的样式:
                        additionalStyles = "background-color: cornflowerblue; color:white;";
                        var rc = {
                            rows: $(this).attr("rowspan"),
                            cols: $(this).attr("colspan"),
                            flag: $(q).find(e.settings.exclude)
                        };
                        if (rc.flag.length > 0) {
                            tempRows += "<td> </td>"; //空格!
                        } else {
                            tempRows += "<td";
                            if (rc.rows > 0) {
                                tempRows += " rowspan='" + rc.rows + "' ";//跨行
                            }
                            if (rc.cols > 0) {
                                tempRows += " colspan='" + rc.cols + "' ";//跨列
                            }
                            if (additionalStyles) {
                                tempRows += " style='" + additionalStyles + "'";//样式
                            }
                            tempRows += ">" + $(q).html() + "</td>";//内容
                        }
                    });


                    //读取原始<table>的<td>数据行
                    $(p).find("td").not(e.settings.exclude).each(function (i, q) {
                        //<td>的样式
                        additionalStyles = "background-color:yellow;";//合计行的样式                       
                        var rc = {
                            rows: $(this).attr("rowspan"),
                            cols: $(this).attr("colspan"),
                            flag: $(q).find(e.settings.exclude)
                        };
                        if (rc.flag.length > 0) {
                            tempRows += "<td> </td>"; //空格!                       
                        } else {
                            tempRows += "<td";
                            if (rc.rows > 0) {
                                tempRows += " rowspan='" + rc.rows + "' ";//跨行
                            }
                            if (rc.cols > 0) {
                                tempRows += " colspan='" + rc.cols + "' ";//跨列
                            }
                            if (rowNumber == subtotal) {//"合计"行的index
                                if (additionalStyles) {
                                    tempRows += " style='" + additionalStyles + "'";//样式
                                }
                            }
                            tempRows += ">" + $(q).html() + "</td>";
                        }
                    });          

重点说明:原始table里面,表头必须用<th>标签,如果表头用<td>标签的话,他会当做普通数据处理


http://www.niftyadmin.cn/n/835991.html

相关文章

360金融更新招股书:发行价区间为16.5至18.5美元

雷帝网 雷建平 12月7日报道360金融日前再次更新招股书&#xff0c;确定IPO每股定价区间在16.5美元-18.5美元&#xff0c;计划发行310万股ADS&#xff08;美国存托凭证&#xff09;。360金融由360金服拆分独立&#xff0c;最初由360集团内部孵化。在其过往融资历程中&#xff0c…

Jmeter 处理Unicode编码转为中文

对于接口中返回报文&#xff0c;有的接口返回信息是Unicode编码&#xff0c;写断言的时候&#xff0c;要么就Response Assertion就写成Unicode编码的断言&#xff0c;如下图&#xff1a; 真心不觉得返回报文加密能有多安全&#xff0c;别人将报文复制到 http://tool.chinaz.com…

Presto sql 语句

2019独角兽企业重金招聘Python工程师标准>>> cast() 函数的使用 将某种数据类型显式转换成另一种数据类型 cast(12 as integer) select cast((year(current_date)-year(birth)) as integer) as age, sum(price) as totalPrice from record r join user_dimensio…

在DataTable里实现分类小计功能

核心代码: public void ProductSummarySubtotal(DataTable dt){for (int i dt.Rows.Count - 1; i > 0; i--){//品牌小计if (i dt.Rows.Count - 1 || dt.Rows[i]["品牌"].ToString() ! dt.Rows[i 1]["品牌"].ToString()){string filter " 品牌 …

oracle高级数据查询技术

实验五 oracle高级数据查询技术实验目的&#xff1a; 一、掌握日期型数据的操作技术 二、掌握层次查询技术 三、理解情景查询与翻译查询技术 四、了解统计查询技术 实验内容&#xff1a;一、日期型数据的操作 日期型数据的查询显示 select hiredate from emp; 不同语言环境下日…

日志服务Python消费组实战(三):实时跨域监测多日志库数据 ...

解决问题 使用日志服务进行数据处理与传递的过程中&#xff0c;你是否遇到如下监测场景不能很好的解决&#xff1a; 特定数据上传到日志服务中需要检查数据内的异常情况&#xff0c;而没有现成监控工具&#xff1f;需要检索数据里面的关键字&#xff0c;但数据没有建立索引&…

spring boot 源码分析(四) 配置文件加载4 之 ConfigFileApplicationListener

2019独角兽企业重金招聘Python工程师标准>>> 一、前言 上章我们通过调试&#xff0c;找到了spring加载application.xml application.yml等配置文件的类&#xff0c;即本章要聊的 ConfigFileApplicationListener 二、看源码 首先我们看一下spring boot 的源码 packag…

[基础篇]ESP8266-SDK教程(一)之开发环境搭建

上篇文章我们了解了ESP8266到底是个什么“东西”&#xff0c;了解了ESP8266在这个万物互联时代有哪些优势&#xff0c;那我们不能光是了解&#xff0c;我们还需要去深入的学习一下&#xff0c;争做物联网时代的弄潮儿~继往开来第二篇&#xff0c;本篇文章主要介绍一下几种常见的…