-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
317 lines (314 loc) · 11.7 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.9.1/jquery.min.js"
integrity="sha512-jGR1T3dQerLCSm/IGEGbndPwzszJBlKQ5Br9vuB0Pw2iyxOy+7AK+lJcCC8eaXyz/9du+bkCy4HXxByhxkHf+w=="
crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<script type="text/javascript" src="./dist/xlsx.bundle.js"></script>
<script type="text/javascript" src="./dist/xlsx.extendscript.js"></script>
<script type="text/javascript" src="./dist/xlsx.download.js"></script>
<script>
$(document).ready(function () {
console.log("test");
var n = 1000;
for (var i = 0; i < n; i++) {
var str = "<tr>" +
"<td>" + i + "</td>" +
"<td>항목1</td>" +
"<td>항목2</td>" +
"<td>항목3</td>" +
"<td>항목4</td>" +
"<td>항목5</td>" +
"<td>항목6</td>" +
"<td>항목7</td>" +
"<td>항목8</td>" +
"<td>항목9</td>" +
"<td>항목10</td>" +
"<td>항목11</td>" +
"<td>항목12</td>" +
"<td>항목13</td>" +
"<td>항목14</td>" +
"<td>항목15</td>" +
"<td>항목16</td>" +
"<td>항목17</td>" +
"<td>항목18</td>" +
"<td>항목19</td>" +
"<td>항목20</td>" +
"<td>항목21</td>" +
"<td>항목22</td>" +
"<td>항목23</td>" +
"<td>항목24</td>" +
"<td>항목25</td>" +
"<td>항목26</td>" +
"<td>항목27</td>" +
"<td>항목28</td>" +
"<td>항목29</td>" +
"<td>항목30</td>" +
"</tr>";
$("#test").find("tbody").append(str)
}
});
function test1() {
console.time('excel 1 download time');
// workBook Create
var wb = XLSX.utils.book_new();
// workSheet Create
var ws = XLSX.utils.table_to_sheet(document.getElementById('test'));
// Sheet Append With Title
XLSX.utils.book_append_sheet(wb, ws, 'sheet title');
// Create Excel File With File Name
XLSX.writeFile(wb, ('파일명.xlsx'));
console.time('excel 1 download time');
}
function test2() {
console.time('excel 2 download time');
// workBook Create
var wb = XLSX.utils.book_new();
// workSheet Create
var ws = XLSX.utils.table_to_sheet(document.getElementById('test'));
// for in Cells add style
for (i in ws) {
if (typeof (ws[i]) != "object") continue;
let cell = XLSX.utils.decode_cell(i);
// add Style to All Cells
ws[i].s = {
font: {
name: "arial"
},
alignment: {
vertical: "center",
horizontal: "center",
wrapText: '1',
},
border: {
right: {
style: "thin",
color: "000000"
},
left: {
style: "thin",
color: "000000"
},
top: {
style: "thin",
color: "000000"
},
bottom: {
style: "thin",
color: "000000"
},
}
};
// Cell format change
/* if ( cell.c == 0 ) { // first column
ws[ i ].s.numFmt = "DD/MM/YYYY HH:MM"; // for dates
ws[ i ].z = "DD/MM/YYYY HH:MM";
} else {
ws[ i ].s.numFmt = "00.00"; // other numbers
} */
// First row is filled gray bg
if (cell.r == 0) {
ws[i].s.fill = {
patternType: "solid",
fgColor: {
rgb: "b2b2b2"
},
bgColor: {
rgb: "b2b2b2"
}
};
}
}
// Sheet Append With Title
XLSX.utils.book_append_sheet(wb, ws, 'sheet title');
// Create Excel File With File Name
XLSX.writeFile(wb, ('파일명.xlsx'));
console.time('excel 2 download time');
}
function test3(exceptColumn) {
console.time('excel 3 download time');
// Create WorkBook
var wb = XLSX.utils.book_new();
// Define Option
var opt = {
// new row except table element
rowIndex: 1,
// if you want excpet column use this option, use Array [0,1,2 ... ]
exceptColumn: exceptColumn,
// merge option ( if you have to merge new row )
merges: [{
// start
s: {
c: 0, // col
r: 0 // row
},
// end
e: {
c: $("#test").find("th").length - 1 - exceptColumn.length, // col ( this means : merge as table column counts )
r: 0 // row
}
}],
};
// WorkSheet
var ws = XLSX2.utils.table_to_sheet(document.getElementById('test'), opt);
// new row --> Title
ws["A1"] = {
t: "s",
v: "CUSTOM TITLE"
};
// new row --> style
ws["A1"].s = {
font: {
name: "arial",
bold: true,
},
alignment: {
vertical: "center",
horizontal: "center",
wrapText: '1', // any truthy value here
},
border: {
right: {
style: "thin",
color: "000000"
},
left: {
style: "thin",
color: "000000"
},
top: {
style: "thin",
color: "000000"
},
},
};
// cell style
for (i in ws) {
if (typeof (ws[i]) != "object") continue;
let cell = XLSX.utils.decode_cell(i);
// cell style
ws[i].s = {
font: {
name: "arial"
},
alignment: {
vertical: "center",
horizontal: "center",
wrapText: '1',
},
border: {
right: {
style: "thin",
color: "000000"
},
left: {
style: "thin",
color: "000000"
},
top: {
style: "thin",
color: "000000"
},
bottom: {
style: "thin",
color: "000000"
},
}
};
// new row & first row ( table th ) style
if (cell.r == 0 || cell.r == 1) {
ws[i].s.fill = {
patternType: "solid",
fgColor: {
rgb: "b2b2b2"
},
bgColor: {
rgb: "b2b2b2"
}
};
}
// if you merge other rows use this
/* if ( i == "!merges" ) {
ws[ "!merges" ].push( {
s : {
c : 0 ,
r : 0
} ,
e : {
c : 0 ,
r : 0
}
} );
} */
}
// Sheet Append With Title
XLSX.utils.book_append_sheet(wb, ws, 'sheet title');
// Create Excel File With File Name
XLSX.writeFile(wb, ('파일명.xlsx'));
console.timeEnd('excel 3 download time');
}
</script>
</head>
<body>
<div>
<a href="#" class="btn01 col04" title="엑셀 다운로드" onclick="test1();">
<span>엑셀 다운로드1</span>
</a>
<a href="#" class="btn01 col04" title="엑셀 다운로드" onclick="test2();">
<span>엑셀 다운로드2</span>
</a>
<a href="#" class="btn01 col04" title="엑셀 다운로드" onclick="test3([10,12]);">
<span>엑셀 다운로드3</span>
</a>
<a href="#" class="btn01 col04" title="엑셀 다운로드"
onclick="xlsx_.download('test','test 파일','excel download','Sheet1');">
<span>엑셀 다운로드 final</span>
</a>
<div class="table_wrap pc_view">
<table class="table t_list" id="test">
<thead>
<tr>
<th>번호</th>
<th>항목1</th>
<th>항목2</th>
<th>항목3</th>
<th>항목4</th>
<th>항목5</th>
<th>항목6</th>
<th>항목7</th>
<th>항목8</th>
<th>항목9</th>
<th>항목10</th>
<th>항목11</th>
<th>항목12</th>
<th>항목13</th>
<th>항목14</th>
<th>항목15</th>
<th>항목16</th>
<th>항목17</th>
<th>항목18</th>
<th>항목19</th>
<th>항목20</th>
<th>항목21</th>
<th>항목22</th>
<th>항목23</th>
<th>항목24</th>
<th>항목25</th>
<th>항목26</th>
<th>항목27</th>
<th>항목28</th>
<th>항목29</th>
<th>항목30</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</div>
</body>
</html>