-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (43 loc) · 1.34 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
<!doctype html>
<html lang="zh">
<head>
<script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.7.1/jquery.min.js"></script>
<script src="https://cdn.bootcdn.net/ajax/libs/PapaParse/5.4.1/papaparse.min.js"></script>
<meta charset="UTF-8" />
<meta name="author" content="Prainy" />
<link rel="stylesheet" href="/style.css" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CSV filter</title>
</head>
<body>
<div id="app">
<h1>CSV filter</h1>
<p>Build with Vite
<img class="inline" src="/vite.svg" alt="vite" />
and jQuery
<img class="inline" src="/jquery.svg" alt="jquery" />
</p>
<div class="card">
<div class="card">
<input type="file" id="csv-file" accept=".csv" multiple />
<button id="execute">检查</button>
</div>
<fieldset>
<legend>选择列:</legend>
<div>
<input type="radio" name="column" value="789" checked />
<label for="huey">7-9列</label>
</div>
<div>
<input type="radio" name="column" value="6" />
<label for="dewey">6列</label>
</div>
</fieldset>
</div>
<div class="list">
<script type="module" src="/main.js"></script>
</div>
</div>
</body>
</html>