-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (54 loc) · 1.8 KB
/
index.html
File metadata and controls
58 lines (54 loc) · 1.8 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>异世界勇者</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" />
<script type="text/javascript" src="js/jquery-3.7.1.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/popper.min.js"></script>
<script type="text/javascript" src="js/wow.js"></script>
<script>
$(function () {
$.ajax({
cache: true,
success: function (json) {
console.log(json);
initTables(json);
},
url: "data/data.json"
});
});
</script>
</head>
<body>
<div>
<div>
<ul class="nav nav-tabs">
<li class="nav-item">
<a class="nav-link active" data-bs-toggle="tab" href="#pane-equips">装备</a>
</li>
<li>
<a class="nav-link" data-bs-toggle="tab" href="#pane-pets">随从</a>
</li>
</ul>
</div>
<div class="tab-content">
<div class="tab-pane active" id="pane-equips">
<table id="equip-table" class="table table-hover table-bordered" width="100%">
<thead>
<tr>
<th>装备</th>
<th>部位</th>
<th>等级</th>
<th>特殊词条</th>
</tr>
</thead>
</table>
</div>
<div class="tab-pane" id="pane-pets">
</div>
</div>
</div>
</body>
</html>