-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.html
44 lines (44 loc) · 2.08 KB
/
main.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
<!DOCTYPE html>
<!-- saved from url=(0023)http://www.contoso.com/ -->
<html lang="ja">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=Edge" />
<script src="./js/lib/jquery-1.11.0.min.js" charset="utf-8"></script>
<script src="./src/diavoloJson.js"></script>
<script src="./js/lib/bootstrap/js/bootstrap.min.js"></script>
<script src="./js/lib/baseline.js"></script>
<script src="./js/main.js"></script>
<link rel="stylesheet" href="./js/lib/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="./js/lib/bootstrap/css/bootstrap-theme.min.css">
<link rel="stylesheet" type="text/css" href="./css/main.css" />
<meta charset="UTF-8"/>
<title>ディアボロの大冒険:店鑑定補助ページ</title>
</head>
<body>
<div id="main">
<form id="input">
<input id="equipment" type="radio" class="itemType" name="itemType" value="equipment" checked=true>
<label for="equipment">装備ディスク</label>
<input id="memory" type="radio" class="itemType" name="itemType" value="memory">
<label for="memory">記憶ディスク</label>
<input id="container" type="radio" class="itemType" name="itemType" value="container">
<label for="container">やばいもの</label>
<br>
<br>
<input id="buy" type="radio" class="tradeType" name="tradeType" value="buy" checked>
<label for="buy">買い値</label>
<input id="sell" type="radio" class="tradeType" name="tradeType" value="sell">
<label for="sell">売り値</label>
<input id="all" type="checkbox" name="all" value="all">
<label for="all">全て</label>
<br>
<br>
<input id="price" name="price" value="0" onKeyPress="return submitStop(event);">
</form>
<div class="container">
<table id="result" class="table table-condensed">
</table>
</div>
</div>
</body>
</html>