-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (36 loc) · 1.68 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Excel Preview</title>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="node_modules/bootstrap-table/dist/bootstrap-table.min.css">
<link href="node_modules/bootstrap-fileinput/css/fileinput.min.css" rel="stylesheet" type="text/css" />
<link rel="stylesheet" href="css/excel-preview.css">
</head>
<body>
<div class="container">
<section>
<div class="content">
<input type="file" name="file" id="file" class="file">
<div id="excelTable"></div>
<div id="kartik-file-errors"></div>
</div>
</section>
</div>
<script src="node_modules/jquery/dist/jquery.min.js" type="text/javascript"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js" type="text/javascript"></script>
<script src="node_modules/bootstrap-table/dist/bootstrap-table.min.js" type="text/javascript"></script>
<script src="node_modules/bootstrap-table/dist/locale/bootstrap-table-zh-CN.min.js" type="text/javascript"></script>
<script src="node_modules/xlsx-style/dist/xlsx.full.min.js" type="text/javascript"></script>
<script src="node_modules/bootstrap-fileinput/js/fileinput.min.js" type="text/javascript"></script>
<script src="node_modules/bootstrap-fileinput/js/locales/zh.js" type="text/javascript"></script>
<script src="js/dist/excel-preview.min.js"></script>
<!-- <script src="js/src/util.js" type="text/javascript" ></script>-->
<!-- <script src="js/src/excel-preview.js" type="text/javascript" ></script>-->
<script type="text/javascript">
$("#excelTable").excelPreview();
</script>
</body>
</html>