forked from JSNewbs/express_helper
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpage.html
65 lines (55 loc) · 2.12 KB
/
page.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
<!--
Copyright (c) 2012 The Chromium Authors. All rights reserved.
Use of this source code is governed by a BSD-style license that can be
found in the LICENSE file.
-->
<html>
<head>
<link rel="stylesheet" href="style/bootstrap.min.css">
<link rel="stylesheet" href="style/style.css">
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<div class="form-group col-sm-8">
<form class="form-inline">
<div class="form-group">
<label for="expressType">请选择快递公司:</label>
<select class="form-control" id="expressType">
<option value="shunfeng">顺丰速运</option>
<option value="ems">EMS</option>
<option value="yuantong">圆通速递</option>
<option value="zhongtong">中通快递</option>
<option value="shentong">申通快递</option>
<option value="yunda">韵达速递</option>
<option value="tiantian">天天快递</option>
<option value="rufengda">如风达</option>
<option value="wanxiangwuliu">万象物流</option>
<option value="quanyikuaidi">全一快递</option>
</select>
<label for="trackNumber">输入快递单号:</label>
<input type="text" class="form-control" id="trackNumber" placeholder="12344566">
<button type="button" class="btn btn-primary search" id="search">查询</button>
</div>
</form>
</div>
</div>
<div class="container">
<div class="col-sm-16">
<div id="container"></div>
</div>
</div>
<table class="table table-striped col-sm-4" hidden="true">
<thead>
<tr>
<th>时间</th>
<th>经过</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</body>
<script src="page.js" type="text/javascript"></script>
</html>