修改jquery.table2excel.js让他导出Excel⽀持css样式懒得说话,直接上代码:
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 >正在导出 请勿关闭此页⾯,请耐⼼等待...谢谢...</span>
<div hidden="hidden">
<table width="200%" border="1" id="table1" >
<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]["占⽐_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 = ElementById(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 < ws.length; i++) {
if (val == ws[i].cells[col].innerHTML) {
count++;
} else {
if (count > 1) {
//合并
start = i - count;
for (var j = start + 1; j < i; j++) { //
count = 1;
}
//赋值,⽤于循环判断
val = ws[i].cells[col].innerHTML;
}
}
if (count > 1) { //合并,最后⼏⾏相同的情况下
start = i - count;
for (var j = start + 1; j < i; j++) {
}
}
}
}
//导出excel
//导出excel
function ExportExcel() {
$('#table1').table2excel({
subtotal:2,//合计⾏所在⾏号(不包括表头)
filename: "excel_" + new Date().getTime() + ".xlsx", //⽂件名称
});
}
</script>
修改后的 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\">";
head: "<html xmlns:o=\"urn:schemas-microsoft-com:office:office\" xmlns:x=\"urn:schemas-microsoft-com:office:excel\" xmlns=\"/TR/RE 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
var tempRows = "";//table的html
$(o).find("tr").not(lude).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(lude).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(lude)
};
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(lude).each(function (i, q) {
//<td>的样式
var tdStyles = "background-color:yellow;";//合计⾏的样式
var rc = {
rows: $(this).attr("rowspan"),
cols: $(this).attr("colspan"),
flag: $(q).find(lude)
};
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 {
else {
tempRows += " style='mso-number-format:\"\@\";' ";//纯⽂本
}
tempRows += ">" + $(q).html() + "</td>";
}
});
tempRows += "</tr>";//⽣成⼀⾏结束
rowNumber++;//⾏号+1
});
// exclude img tags
if (lude_img) {
tempRows = exclude_img(tempRows);
css表格样式}
// exclude link tags
if (lude_links) {
tempRows = exclude_links(tempRows);
}
// exclude input tags
if (lude_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) {
place(/{(\w+)}/g, function (m, p) {
return c[p];
});
};
sheetName = typeof sheetName === "undefined" ? "Sheet" : sheetName;
< = {
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) {
<["table" + i] = table[i];
}
able;
var isIE = navigator.appVersion.indexOf("MSIE 10") !== -1 || (navigator.userAgent.indexOf("Trident") !== -1 && navigator.userAgent.indexOf("rv:11") !== -1 //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));
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论