Skip to content
This repository was archived by the owner on Sep 6, 2022. It is now read-only.

Commit 75192f6

Browse files
authored
Update jquery.table2excel.js
1 parent 51d1bb8 commit 75192f6

File tree

1 file changed

+24
-28
lines changed

1 file changed

+24
-28
lines changed

src/jquery.table2excel.js

+24-28
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,18 @@
11
//table2excel.js
22
;(function ( $, window, document, undefined ) {
33
var pluginName = "table2excel",
4-
54
defaults = {
65
exclude: ".noExl",
7-
name: "Table2Excel"
6+
name: "Table2Excel"
87
};
9-
8+
109
// The actual plugin constructor
1110
function Plugin ( element, options ) {
1211
this.element = element;
1312
// jQuery has an extend method which merges the contents of two or
1413
// more objects, storing the result in the first object. The first object
1514
// is generally empty as we don't want to alter the default options for
1615
// future instances of the plugin
17-
//
1816
this.settings = $.extend( {}, defaults, options );
1917
this._defaults = defaults;
2018
this._name = pluginName;
@@ -23,10 +21,12 @@
2321

2422
Plugin.prototype = {
2523
init: function () {
26-
var e = this;
27-
28-
var utf8Heading = "<meta http-equiv=\"content-type\" content=\"application/vnd.ms-excel; charset=UTF-8\">";
24+
var e = this;
25+
26+
var utf8Heading = "<meta http-equiv=\"content-type\" content=\"application/vnd.ms-excel; charset=UTF-8\">";
27+
2928
e.template = {
29+
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>",
3030
sheet: {
3131
head: "<x:ExcelWorksheet><x:Name>",
3232
tail: "</x:Name><x:WorksheetOptions><x:DisplayGridlines/></x:WorksheetOptions></x:ExcelWorksheet>"
@@ -38,9 +38,9 @@
3838
},
3939
foot: "</body></html>"
4040
};
41-
41+
4242
e.tableRows = [];
43-
43+
4444
// get contents of table except for exclude
4545
$(e.element).each( function(i,o) {
4646
var tempRows = "";
@@ -59,13 +59,13 @@
5959
});
6060
e.tableRows.push(tempRows);
6161
});
62-
62+
6363
e.tableToExcel(e.tableRows, e.settings.name, e.settings.sheetName);
6464
},
65-
65+
6666
tableToExcel: function (table, name, sheetName) {
6767
var e = this, fullTemplate="", i, link, a;
68-
68+
6969
e.uri = "data:application/vnd.ms-excel;base64,";
7070
e.base64 = function (s) {
7171
return window.btoa(unescape(encodeURIComponent(s)));
@@ -75,42 +75,41 @@
7575
return c[p];
7676
});
7777
};
78-
78+
7979
sheetName = typeof sheetName === "undefined" ? "Sheet" : sheetName;
80-
80+
8181
e.ctx = {
8282
worksheet: name || "Worksheet",
8383
table: table,
8484
sheetName: sheetName,
8585
};
86-
86+
8787
fullTemplate= e.template.head;
88-
88+
8989
if ( $.isArray(table) ) {
9090
for (i in table) {
9191
//fullTemplate += e.template.sheet.head + "{worksheet" + i + "}" + e.template.sheet.tail;
9292
fullTemplate += e.template.sheet.head + sheetName + i + e.template.sheet.tail;
9393
}
9494
}
95-
95+
9696
fullTemplate += e.template.mid;
97-
97+
9898
if ( $.isArray(table) ) {
9999
for (i in table) {
100100
fullTemplate += e.template.table.head + "{table" + i + "}" + e.template.table.tail;
101101
}
102102
}
103-
103+
104104
fullTemplate += e.template.foot;
105-
105+
106106
for (i in table) {
107107
e.ctx["table" + i] = table[i];
108108
}
109109
delete e.ctx.table;
110-
111-
var isIE = /*@cc_on!@*/false || !!document.documentMode; // this works with IE10 and IE11 both :)
112-
if (isIE)
113-
{
110+
111+
var isIE = /*@cc_on!@*/false || !!document.documentMode; // this works with IE10 and IE11 both :)
112+
if (isIE) {
114113
if (typeof Blob !== "undefined") {
115114
//use blobs if we can
116115
fullTemplate = e.format(fullTemplate, e.ctx); // with this, works with IE
@@ -127,24 +126,21 @@
127126
txtArea1.focus();
128127
sa = txtArea1.document.execCommand("SaveAs", true, getFileName(e.settings) );
129128
}
130-
131129
} else {
132130
link = e.uri + e.base64(e.format(fullTemplate, e.ctx));
133131
a = document.createElement("a");
134132
a.download = getFileName(e.settings);
135133
a.href = link;
136134

137135
document.body.appendChild(a);
138-
139136
a.click();
140-
141137
document.body.removeChild(a);
142138
}
143139

144140
return true;
145141
}
146142
};
147-
143+
148144
function getFileName(settings) {
149145
return ( settings.filename ? settings.filename : "table2excel" );
150146
}

0 commit comments

Comments
 (0)